gnucash/src/libqof/qof/guid.hpp

54 lines
2.2 KiB
C++
Raw Normal View History

2016-06-07 09:39:46 -05:00
/********************************************************************
* guid.hpp - GncGUID struct definition. *
* Copyright 2016 Aaron Laws *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of *
* the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License*
* along with this program; if not, contact: *
* *
* Free Software Foundation Voice: +1-617-542-5942 *
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA gnu@gnu.org *
* *
*******************************************************************/
#ifndef GUID_HPP_HEADER
#define GUID_HPP_HEADER
#include <boost/uuid/uuid.hpp>
#include <stdexcept>
2016-10-20 15:47:32 -05:00
extern "C" {
#include "guid.h"
}
2016-06-07 09:39:46 -05:00
2016-10-20 15:47:32 -05:00
namespace gnc {
2016-06-07 09:39:46 -05:00
struct guid_syntax_exception : public std::invalid_argument
{
guid_syntax_exception () noexcept;
};
2016-10-20 15:47:32 -05:00
struct GUID : public boost::uuids::uuid
2016-06-07 09:39:46 -05:00
{
2016-10-20 15:47:32 -05:00
GUID (boost::uuids::uuid const &) noexcept;
GUID (GncGUID const &) noexcept;
GUID () noexcept = default;
operator GncGUID() const noexcept;
static GUID create_random () noexcept;
static GUID const & null_guid () noexcept;
static GUID from_string (std::string const &) throw (guid_syntax_exception);
2016-06-07 09:39:46 -05:00
std::string to_string () const noexcept;
};
2016-10-20 15:47:32 -05:00
bool operator==(GUID const &, GncGUID const &) noexcept;
}
2016-06-07 09:39:46 -05:00
#endif