Jamoma API  0.6.0.a19
TTAudioGraphJoin.cpp
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup audioGraphUtilityLib
4  *
5  * @brief join≈: merge 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 
17 #include "TTAudioGraphJoin.h"
18 
19 #define thisTTClass TTAudioGraphJoin
20 #define thisTTClassName "audio.join"
21 #define thisTTClassTags "audio, graph"
22 
23 
24 TT_AUDIO_CONSTRUCTOR
25 {
26  setAttributeValue(TT("maxNumChannels"), arguments);
27  setProcessMethod(processAudio);
28 }
29 
30 
31 // Destructor
32 TTAudioGraphJoin::~TTAudioGraphJoin()
33 {
34  ;
35 }
36 
#define setProcessMethod(methodName)
A convenience macro to be used by subclasses for setting the process method.
#define TT
This macro is defined as a shortcut for doing a lookup in the symbol table.
Definition: TTSymbol.h:155
join≈: merge multichannel signals