Qt IOC Container 3.5


ReferenceDefinition.h

Go to the documentation of this file.
00001 #ifndef REFERENCE_DEFINITION_H_
00002 #define REFERENCE_DEFINITION_H_
00003 
00004 #include <QMetaType>
00005 #include <QString>
00006 
00007 namespace qic
00008 {
00009 
00010   struct ReferenceDefinition
00011   {
00012     bool isWeak;
00013     QString refId;
00014   };
00015 };
00016 
00017 Q_DECLARE_METATYPE(qic::ReferenceDefinition)
00018 
00019 #endif
00020