Qt IOC Container 3.5


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   ; // interface ObjectDefinitionReader
00025 
00026 }
00027 ; // namespace qic
00028 
00029 #endif