21 lines
350 B
C++
Executable File
21 lines
350 B
C++
Executable File
|
|
|
|
#include <stdio.h>
|
|
#include "ofxsImageEffect.h"
|
|
#include "multibundle1.h"
|
|
#include "multibundle2.h"
|
|
|
|
namespace OFX
|
|
{
|
|
namespace Plugin
|
|
{
|
|
void getPluginIDs(OFX::PluginFactoryArray &ids)
|
|
{
|
|
static DotExamplePluginFactory p1;
|
|
ids.push_back(&p1);
|
|
static GammaExamplePluginFactory p2;
|
|
ids.push_back(&p2);
|
|
}
|
|
}
|
|
}
|