Ptex
PtexVersion.h
Go to the documentation of this file.
1 #ifndef PtexVersion_h
2 #define PtexVersion_h
3 
4 /*
5 PTEX SOFTWARE
6 Copyright 2014 Disney Enterprises, Inc. All rights reserved
7 
8 Redistribution and use in source and binary forms, with or without
9 modification, are permitted provided that the following conditions are
10 met:
11 
12  * Redistributions of source code must retain the above copyright
13  notice, this list of conditions and the following disclaimer.
14 
15  * Redistributions in binary form must reproduce the above copyright
16  notice, this list of conditions and the following disclaimer in
17  the documentation and/or other materials provided with the
18  distribution.
19 
20  * The names "Disney", "Walt Disney Pictures", "Walt Disney Animation
21  Studios" or the names of its contributors may NOT be used to
22  endorse or promote products derived from this software without
23  specific prior written permission from Walt Disney Pictures.
24 
25 Disclaimer: THIS SOFTWARE IS PROVIDED BY WALT DISNEY PICTURES AND
26 CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
27 BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
28 FOR A PARTICULAR PURPOSE, NONINFRINGEMENT AND TITLE ARE DISCLAIMED.
29 IN NO EVENT SHALL WALT DISNEY PICTURES, THE COPYRIGHT HOLDER OR
30 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND BASED ON ANY
34 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
37 */
38 
39 #define PtexAPIVersion 4
40 #define PtexFileMajorVersion 1
41 #define PtexFileMinorVersion 4
42 #define PtexLibraryMajorVersion 2
43 #define PtexLibraryMinorVersion 3
44 
45 #define PTEX_NAMESPACE Ptex
46 #ifdef PTEX_VENDOR
47 # define make_version_ns_(major,minor,vendor) v##major##_##minor##_##vendor
48 # define make_version_ns(major,minor,vendor) make_version_ns_(major,minor,vendor)
49 # define PTEX_VERSION_NAMESPACE make_version_ns(PtexLibraryMajorVersion,PtexLibraryMinorVersion,PTEX_VENDOR)
50 #else
51 # define make_version_ns_(major,minor) v##major##_##minor
52 # define make_version_ns(major,minor) make_version_ns_(major,minor)
53 # define PTEX_VERSION_NAMESPACE make_version_ns(PtexLibraryMajorVersion,PtexLibraryMinorVersion)
54 #endif
55 
56 #define PTEX_NAMESPACE_BEGIN \
57 namespace PTEX_NAMESPACE { \
58 namespace PTEX_VERSION_NAMESPACE {} \
59 using namespace PTEX_VERSION_NAMESPACE; \
60 namespace PTEX_VERSION_NAMESPACE {
61 
62 #define PTEX_NAMESPACE_END }}
63 #endif