#ifndef _GEDCOMPARSER_SERIALIZER_READER_HH_ #define _GEDCOMPARSER_SERIALIZER_READER_HH_ #include namespace GEDCOMParser { class Serializable; class Reader { public: virtual Serializable * ReadObject(Serializable const * const) = 0; virtual std::string ReadString(std::string const &name) = 0; }; }; #endif