diff options
author | David Robillard <d@drobilla.net> | 2006-06-18 04:53:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-18 04:53:39 +0000 |
commit | e6f42fd640dcbad6b2e39cc85bdf307d197278b0 (patch) | |
tree | 6ac7e8f48ae983e791b21d83d5aeb8e954e94543 /src/common/util | |
parent | 466f1cdbe5f41a688112ebd462309e7679181f59 (diff) | |
download | ingen-e6f42fd640dcbad6b2e39cc85bdf307d197278b0.tar.gz ingen-e6f42fd640dcbad6b2e39cc85bdf307d197278b0.tar.bz2 ingen-e6f42fd640dcbad6b2e39cc85bdf307d197278b0.zip |
Added DataType
git-svn-id: http://svn.drobilla.net/lad/grauph@51 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/util')
-rw-r--r-- | src/common/util/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/util/types.h b/src/common/util/types.h index 4c138292..d0ca5a0b 100644 --- a/src/common/util/types.h +++ b/src/common/util/types.h @@ -29,4 +29,8 @@ typedef jack_default_audio_sample_t sample; typedef jack_nframes_t samplecount; typedef jack_nframes_t samplerate; +/** A type that Om can patch (eg can be stored in a port) */ +enum DataType { FLOAT, MIDI, UNKNOWN }; + + #endif // TYPES_H |