opennurbs_cpp_base.h
1 /* $NoKeywords: $ */
2 /*
3 //
4 // Copyright (c) 1993-2015 Robert McNeel & Associates. All rights reserved.
5 // OpenNURBS, Rhinoceros, and Rhino3D are registered trademarks of Robert
6 // McNeel & Associates.
7 //
8 // THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY.
9 // ALL IMPLIED WARRANTIES OF FITNESS FOR ANY PARTICULAR PURPOSE AND OF
10 // MERCHANTABILITY ARE HEREBY DISCLAIMED.
11 //
12 // For complete openNURBS copyright information see <http://www.opennurbs.org>.
13 //
14 ////////////////////////////////////////////////////////////////
15 */
16 
17 #if !defined(OPENNURBS_CPP_BASE_INC_)
18 #define OPENNURBS_CPP_BASE_INC_
19 
20 // basic C++ declarations
21 
22 
23 #if !defined(UUID_DEFINED) && !defined(GUID_DEFINED)
24 // basic C++ declarations
25 bool operator==(const struct ON_UUID_struct& a, const struct ON_UUID_struct& b);
26 bool operator!=(const struct ON_UUID_struct& a, const struct ON_UUID_struct& b);
27 #endif
28 
29 #endif
ON_UUID is a 16 byte universally unique identifier.
Definition: opennurbs_uuid.h:32