00001 00002 // Cloner.h // 00004 00005 #ifndef CLONER_H 00006 #define CLONER_H 00007 00008 #include "X3DOnePassProcessor.h" 00009 #include "ClonerStateVariables.h" 00010 00011 namespace X3DTK { 00012 00014 00015 class Cloner : public X3DOnePassProcessor 00016 { 00017 public: 00019 Cloner(); 00021 virtual ~Cloner(); 00022 00024 virtual SFNode clone(SFNode N, bool reset = true) const; 00025 00027 void init(); 00029 void finish(); 00030 }; 00031 00032 } 00033 00034 #endif