13
0

Some AudioGrapher classes need to be exportable now, to support newly introduced 'AnalysisGraph' class

(not entirely sure why - but it might be because 'ProcessContext<Sample>' is now used in multiple sources within libardour).
This commit is contained in:
John Emmas 2016-03-12 13:59:44 +00:00
parent af44e0e051
commit f00342b2d8
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace AudioGrapher
/// A debugging class for nodes that support a certain set of flags.
template<DebugLevel L = DEFAULT_DEBUG_LEVEL>
class /*LIBAUDIOGRAPHER_API*/ FlagDebuggable : public Debuggable<L>
class LIBAUDIOGRAPHER_API FlagDebuggable : public Debuggable<L>
{
public:
typedef FlagField::Flag Flag;

View File

@ -40,7 +40,7 @@ enum /*LIBAUDIOGRAPHER_API*/ ThrowLevel
* logical and (short-circuiting).
*/
template<ThrowLevel L = DEFAULT_THROW_LEVEL>
class /*LIBAUDIOGRAPHER_API*/ Throwing
class LIBAUDIOGRAPHER_API Throwing
{
protected:
Throwing() {}