blob: 636c6b7d7054c472823b7b49b075a9760ad417d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// File: Draw_PluginMacro.hxx
// Created: Thu Aug 14 14:15:00 2003
// Author: Sergey ZARITCHNY <szy@nnov.matra-dtv.fr>
#ifndef _Draw_PluginMacro_HeaderFile
#define _Draw_PluginMacro_HeaderFile
#define DPLUGIN(name) \
extern "C" {Standard_EXPORT void PLUGINFACTORY(Draw_Interpretor&);} \
void PLUGINFACTORY(Draw_Interpretor& theDI) { \
name::Factory(theDI);} \
\
#endif
|