#ifndef _TEXTMODEL_H_ #define _TEXTMODEL_H_ #include #include #include namespace odc { class TextModel : public ContainerModel { private: static const std::string TYPENAME; static const TypeProxy PROXY; public: TextModel(INTEGER id); static const std::string &getType(); static const std::string *getSuper(); virtual const std::string &getTypeName() const; virtual void internalize(Reader &reader); }; class StdTextModel : public TextModel { private: static const std::string TYPENAME; static const TypeProxy PROXY; public: StdTextModel(INTEGER id); static const std::string &getType(); static const std::string *getSuper(); virtual const std::string &getTypeName() const; virtual void internalize(Reader &reader); }; } // namespace odc #endif // _TEXTMODEL_H_