GeoTessCPP  2.2
Software to facilitate storage and retrieval of 3D information about the Earth.
GeoTessProfileType.h
Go to the documentation of this file.
1 //- ****************************************************************************
2 //-
3 //- Copyright 2009 Sandia Corporation. Under the terms of Contract
4 //- DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government
5 //- retains certain rights in this software.
6 //-
7 //- BSD Open Source License.
8 //- All rights reserved.
9 //-
10 //- Redistribution and use in source and binary forms, with or without
11 //- modification, are permitted provided that the following conditions are met:
12 //-
13 //- * Redistributions of source code must retain the above copyright notice,
14 //- this list of conditions and the following disclaimer.
15 //- * Redistributions in binary form must reproduce the above copyright
16 //- notice, this list of conditions and the following disclaimer in the
17 //- documentation and/or other materials provided with the distribution.
18 //- * Neither the name of Sandia National Laboratories nor the names of its
19 //- contributors may be used to endorse or promote products derived from
20 //- this software without specific prior written permission.
21 //-
22 //- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23 //- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 //- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 //- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
26 //- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 //- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 //- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 //- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 //- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 //- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 //- POSSIBILITY OF SUCH DAMAGE.
33 //-
34 //- ****************************************************************************
35 
36 #ifndef PROFILETYPE_OBJECT_H
37 #define PROFILETYPE_OBJECT_H
38 
39 // **** _SYSTEM INCLUDES_ ******************************************************
40 
41 #include <iostream>
42 #include <string>
43 
44 // use standard library objects
45 using namespace std;
46 
47 // **** _LOCAL INCLUDES_ *******************************************************
48 
49 #include "GeoTessEnumType.h"
50 
51 // **** _BEGIN GEOTESS NAMESPACE_ **********************************************
52 
53 namespace geotess {
54 
55 // **** _FORWARD REFERENCES_ ***************************************************
56 
57 // **** _CLASS DEFINITION_ *****************************************************
58 
70 {
71  private:
72 
77 
82 
86  GeoTessProfileType& operator=(const GeoTessProfileType& pt)
87  { return *this; };
88 
92  static const int aSize;
93 
98  static inline int nextOrdinal ()
99  { static int firstOrdinal = 0;
100  return firstOrdinal++; };
101 
107  GeoTessProfileType (const string& name) :
108  GeoTessEnumType(name, nextOrdinal()) {};
109 
110  public:
111 
115  static const GeoTessProfileType EMPTY;
116  static const GeoTessProfileType THIN;
121 
125  static const GeoTessProfileType* aArray[];
126 
130  virtual ~GeoTessProfileType() {};
131 
139  static const GeoTessProfileType* valueOf(const string& s)
140  { return (const GeoTessProfileType*) GeoTessEnumType::valueOf(s, (GeoTessEnumType const* const* const) aArray, aSize); };
141 
145  static GeoTessProfileType const* const* const values() { return aArray; };
146 
150  static int size() { return aSize; };
151 
152 }; // end class ProfileType
153 
154 } // end namespace geotess
155 
156 #endif // PROFILETYPE_OBJECT_H
static const GeoTessProfileType NPOINT
Definition: GeoTessProfileType.h:118
Definition: ArrayReuse.h:55
static GeoTessProfileType const *const *const values()
Returns the array of all enums for this type.
Definition: GeoTessProfileType.h:145
Enumeration of the valid Profile types, including EMPTY, THIN, CONSTANT, NPOINT and SURFACE...
Definition: GeoTessProfileType.h:69
static int size()
Returns the total number of enums of this type.
Definition: GeoTessProfileType.h:150
static const GeoTessProfileType THIN
Definition: GeoTessProfileType.h:116
static const GeoTessProfileType SURFACE_EMPTY
Definition: GeoTessProfileType.h:120
The base class for all "enum" types.
Definition: GeoTessEnumType.h:67
static const GeoTessProfileType SURFACE
Definition: GeoTessProfileType.h:119
static const GeoTessProfileType CONSTANT
Definition: GeoTessProfileType.h:117
static const GeoTessProfileType * valueOf(const string &s)
Returns a pointer to the enum whose string matches the input string.
Definition: GeoTessProfileType.h:139
#define GEOTESS_EXP_IMP
Definition: CPPGlobals.h:71
virtual ~GeoTessProfileType()
Standard Destructor.
Definition: GeoTessProfileType.h:130