#ifndef MYCOMPONENTCREATOR_H #define MYCOMPONENTCREATOR_H #include namespace X3DTK { namespace X3D { // Component creator deriving the generic component creator and defining a new // component creator. class MyComponentCreator : public X3DComponentCreator { public: // Constructor. MyComponentCreator(); }; } } #endif