summaryrefslogtreecommitdiff
path: root/shared/guid.h
blob: b2718d7fe1cc75da6c2be3b39c9be06ed0b93bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef GUID_H_INCLUDED
#define GUID_H_INCLUDED

#include <wx/stream.h>
#include <boost/shared_ptr.hpp>

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<IntData> pData;
};

}


#endif // GUID_H_INCLUDED
bgstack15