00001 00002 // X3D_InlineLoader.h // 00004 00005 #ifndef INLINELOADER_H 00006 #define INLINELOADER_H 00007 00008 #include "X3DOnePassProcessor.h" 00009 #include "X3D_InlineLoaderStateVariables.h" 00010 00011 namespace X3DTK { 00012 namespace X3D { 00013 00015 00016 class InlineLoader : public X3DOnePassProcessor 00017 { 00018 public: 00020 InlineLoader(); 00022 virtual ~InlineLoader(); 00023 00026 virtual void load(SFNode N, bool force = false); 00027 00028 protected: 00029 InlineLoaderStateVariables *stateVariables; 00030 }; 00031 00032 } 00033 } 00034 00035 #endif