Jamoma API  0.6.0.a19
TTAudioGraphSplit.cpp
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup audioGraphUtilityLib
4  *
5  * @brief split≈: divide multichannel signal into N smaller multichannel signals
6  *
7  * @details
8  *
9  * @authors Timothy Place
10  *
11  * @copyright Copyright © 2008 by Timothy Place @n
12  * This code is licensed under the terms of the "New BSD License" @n
13  * http://creativecommons.org/licenses/BSD/
14  */
15 
16 #include "TTAudioGraphSplit.h"
17 
18 #define thisTTClass TTAudioGraphSplit
19 #define thisTTClassName "audio.split"
20 #define thisTTClassTags "audio, graph"
21 
22 
23 TT_AUDIO_CONSTRUCTOR
24 {
26 
27  setAttributeValue(TT("maxNumChannels"), arguments);
28  setProcessMethod(processAudio);
29 }
30 
31 
32 // Destructor
33 TTAudioGraphSplit::~TTAudioGraphSplit()
34 {
35  ;
36 }
37 
#define setProcessMethod(methodName)
A convenience macro to be used by subclasses for setting the process method.
16-bit unsigned integer, range is 0 through 65,535.
Definition: TTBase.h:276
#define TT
This macro is defined as a shortcut for doing a lookup in the symbol table.
Definition: TTSymbol.h:155
split≈: divide multichannel signal into N smaller multichannel signals
#define addAttributeWithGetterAndSetter(name, type)
A convenience macro to be used by subclasses for registering attributes with a custom getter and sett...
Definition: TTAttribute.h:57