#ifndef DEVICEPKGREF_H #define DEVICEPKGREF_H //#include "ossie/ossieparser.h" #include #include #include "include/tinyxml.h" //class OSSIEPARSER_API DevicePkgRef class DevicePkgRef { public: DevicePkgRef(TiXmlElement *elem); ~DevicePkgRef(); std::string getType(); std::string getLocalFile(); protected: void parseElement(TiXmlElement *elem); private: DevicePkgRef(); // no default constructor DevicePkgRef(const DevicePkgRef& aDevicePkgRef); // no copying std::string type; std::string localfile; }; #endif