add missing file
[ardour.git] / libs / pbd / pbd / uuid.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sakari Bergen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __pbd_uuid_h__
22 #define __pbd_uuid_h__
23
24 #include <string>
25 #include <uuid/uuid.h>
26
27 #include "pbd/libpbd_visibility.h"
28
29 namespace PBD {
30
31 class LIBPBD_API UUID {
32
33   public:
34         UUID () { uuid_generate (id); }
35         UUID (UUID const & other) { uuid_copy (id, other.id); }
36         UUID (std::string const & str) { uuid_parse (str.c_str(), id); }
37         
38         UUID& operator= (std::string const & str);
39         std::string to_s () const;
40         
41         bool operator== (UUID const & other) const { return !uuid_compare (id, other.id); }
42         bool operator!= (UUID const & other) const { return uuid_compare (id, other.id); }
43         bool operator< (UUID const & other) const { return uuid_compare (id, other.id) < 0; }
44         
45         operator bool() const { return !uuid_is_null (id); }
46
47   private:
48         uuid_t id;
49
50 };
51
52 } // namespace PBD
53
54 #endif // __pbd_uuid_h__