Jamoma API  0.6.0.a19
Plugtastic.cpp
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup audioGraphPlugtastic
4  *
5  * @brief Registers classes for Plugtastic
6  *
7  * @details
8  *
9  * @authors Timothy Place
10  *
11  * @copyright Copyright © 2010 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 "TTAudioGraphAPI.h"
18 #include "PlugtasticInput.h"
19 #include "PlugtasticOutput.h"
20 
21 
22 extern "C" TT_EXTENSION_EXPORT TTErr TTLoadJamomaExtension_Plugtastic(void)
23 {
24  TTAudioGraphInit();
25 
26  PlugtasticInput::registerClass();
27  PlugtasticOutput::registerClass();
28 
29  return kTTErrNone;
30 }
31 
Provides all necessary definitions for AudioGraph API.
Manage input signals into Plugtastic.
TTErr
Jamoma Error Codes Enumeration of error codes that might be returned by any of the TTBlue functions a...
Definition: TTBase.h:342
No Error.
Definition: TTBase.h:343
Manage output signals from Plugtastic.