#ifndef GUID_H_INCLUDED #define GUID_H_INCLUDED #include #include namespace Utility { class UniqueId { public: UniqueId(); //create UUID UniqueId(wxInputStream& stream); //read void toStream(wxOutputStream& stream) const; //write bool operator==(const UniqueId rhs) const; bool operator<(const UniqueId rhs) const; private: struct IntData; boost::shared_ptr pData; }; } #endif // GUID_H_INCLUDED