#ifndef FCYLINDER_H #define FCYLINDER_H #include namespace X3DTK { namespace X3D { class FCylinder : public Cylinder { public: FCylinder(); virtual ~FCylinder(); void setSection(SFInt32 section); inline SFInt32 getSection() const {return _section;}; private: SFInt32 _section; }; } } #endif