8 lines
137 B
C++
8 lines
137 B
C++
|
|
#include "DiagramPlugin.h"
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
__declspec(dllexport) IPlugin* createPlugin() {
|
||
|
|
return new DiagramPlugin();
|
||
|
|
}
|
||
|
|
}
|