/usr/include/ossp/uuid++.hh is in libossp-uuid-dev 1.6.2-1.3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | /*
** OSSP uuid - Universally Unique Identifier
** Copyright (c) 2004-2008 Ralf S. Engelschall <rse@engelschall.com>
** Copyright (c) 2004-2008 The OSSP Project <http://www.ossp.org/>
**
** This file is part of OSSP uuid, a library for the generation
** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/
**
** Permission to use, copy, modify, and distribute this software for
** any purpose with or without fee is hereby granted, provided that
** the above copyright notice and this permission notice appear in all
** copies.
**
** THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
** IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
** USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
** ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
** OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
** SUCH DAMAGE.
**
** uuid++.hh: library C++ API definition
*/
#ifndef __UUIDXX_HH__
#define __UUIDXX_HH__
/* required C API header */
#include <stdlib.h>
#include "uuid.h"
/* UUID object class */
class uuid {
public:
/* construction & destruction */
uuid (); /* standard constructor */
uuid (const uuid &_obj); /* copy constructor */
uuid (const uuid_t *_obj); /* import constructor */
uuid (const void *_bin); /* import constructor */
uuid (const char *_str); /* import constructor */
~uuid (); /* destructor */
/* copying & cloning */
uuid &operator= (const uuid &_obj); /* copy assignment operator */
uuid &operator= (const uuid_t *_obj); /* import assignment operator */
uuid &operator= (const void *_bin); /* import assignment operator */
uuid &operator= (const char *_str); /* import assignment operator */
uuid clone (void); /* regular method */
/* content generation */
void load (const char *_name); /* regular method */
void make (unsigned int _mode, ...); /* regular method */
/* content comparison */
int isnil (void); /* regular method */
int compare (const uuid &_obj); /* regular method */
int operator== (const uuid &_obj); /* comparison operator */
int operator!= (const uuid &_obj); /* comparison operator */
int operator< (const uuid &_obj); /* comparison operator */
int operator<= (const uuid &_obj); /* comparison operator */
int operator> (const uuid &_obj); /* comparison operator */
int operator>= (const uuid &_obj); /* comparison operator */
/* content importing & exporting */
void import (const void *_bin); /* regular method */
void import (const char *_str); /* regular method */
void *binary (void); /* regular method */
char *string (void); /* regular method */
char *integer (void); /* regular method */
char *summary (void); /* regular method */
unsigned long version (void); /* regular method */
private:
uuid_t *ctx;
};
/* UUID exception class */
class uuid_error_t {
public:
uuid_error_t () { code(UUID_RC_OK); };
uuid_error_t (uuid_rc_t _code) { code(_code); };
~uuid_error_t () { };
void code (uuid_rc_t _code) { rc = _code; };
uuid_rc_t code (void) { return rc; };
char *string (void) { return uuid_error(rc); };
private:
uuid_rc_t rc;
};
#endif /* __UUIDXX_HH__ */
|