#ifndef INFOREADERGROUPINGVISITOR_H #define INFOREADERGROUPINGVISITOR_H #include namespace X3DTK { namespace X3D { class Info; class Price; class Modeler; // Visitor for the Grouping component of the InfoReader processor. class InfoReaderGroupingVisitor : public GroupingVisitor { public: InfoReaderGroupingVisitor(); static void enterInfo(Info *I); static void enterPrice(Price *P); static void enterModeler(Modeler *M); }; } } #endif