summaryrefslogtreecommitdiff
path: root/shared/guid.h
blob: d639fff5d632e378a258f49306c96ce04b6874b6 (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
29
30
31
32
33
34
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************
//
#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