ObjectDefinitionReader.h
Go to the documentation of this file.00001
00002 #ifndef QIC_OBJECT_DEFINITION_READER_H_
00003 #define QIC_OBJECT_DEFINITION_READER_H_
00004
00005 #include <QIODevice>
00006
00007 namespace qic
00008 {
00009
00016 class ObjectDefinitionReader
00017 {
00018 public:
00019 virtual ~ObjectDefinitionReader () {}
00020
00021 virtual int loadObjectDefinitions (QIODevice & source) = 0;
00022
00023 }
00024 ;
00025
00026 }
00027 ;
00028
00029 #endif