Ardour  9.0-pre0-350-gf17a656217
uuid_boost.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008 Sakari Bergen <sakari.bergen@beatwaves.net>
3  * Copyright (C) 2011-2015 Paul Davis <paul@linuxaudiosystems.com>
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 along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 #pragma once
21 
22 #include <string>
23 #include <boost/uuid/uuid.hpp>
24 #include <boost/uuid/uuid_generators.hpp>
25 
26 #include "pbd/libpbd_visibility.h"
27 
28 namespace PBD {
29 
30 class LIBPBD_API UUID : public boost::uuids::uuid {
31 
32  public:
33  UUID ()
34  : boost::uuids::uuid (boost::uuids::random_generator()()) {}
35  UUID (std::string const & str)
36  : boost::uuids::uuid (boost::uuids::string_generator()(str)) {}
37 
38  explicit UUID (boost::uuids::uuid const& u)
39  : boost::uuids::uuid(u)
40  {}
41 
42  operator boost::uuids::uuid() {
43  return static_cast<boost::uuids::uuid&>(*this);
44  }
45 
46  operator boost::uuids::uuid() const {
47  return static_cast<boost::uuids::uuid const&>(*this);
48  }
49 
50  UUID& operator= (std::string const & str);
51  std::string to_s () const;
52 
53  operator bool() const { return !is_nil(); }
54 };
55 
56 } // namespace PBD
57 
Definition: uuid.h:31
UUID(boost::uuids::uuid const &u)
Definition: uuid_boost.h:38
std::string to_s() const
UUID(std::string const &str)
Definition: uuid_boost.h:35
#define LIBPBD_API
Definition: axis_view.h:42