SIVIC API  0.9.26
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
svkTypes.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2009-2014 The Regents of the University of California.
3  * All Rights Reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * • Redistributions of source code must retain the above copyright notice,
8  * this list of conditions and the following disclaimer.
9  * • Redistributions in binary form must reproduce the above copyright notice,
10  * this list of conditions and the following disclaimer in the documentation
11  * and/or other materials provided with the distribution.
12  * • None of the names of any campus of the University of California, the name
13  * "The Regents of the University of California," or the names of any of its
14  * contributors may be used to endorse or promote products derived from this
15  * software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
26  * OF SUCH DAMAGE.
27  */
28 
29 
30 
31 /*
32  * $URL$
33  * $Rev$
34  * $Author$
35  * $Date$
36  *
37  * Authors:
38  * Jason C. Crane, Ph.D.
39  * Beck Olson
40  */
41 
42 
43 #ifndef SVK_TYPES_H
44 #define SVK_TYPES_H
45 
46 
47 //#include <vtkObjectFactory.h>
48 
49 
50 namespace svk {
51 
52 
53 using namespace std;
54 
55 
56 class svkTypes : public vtkObject
57 {
58 
59  public:
60 
61  vtkTypeMacro( svkTypes, vtkObject);
62 
63  typedef enum {
64  ANATOMY_UNDEFINED = -1,
65  ANATOMY_BRAIN = 0,
66  ANATOMY_PROSTATE
67  } AnatomyType;
68 
69  static string GetAnatomyTypeString( AnatomyType anatomyType )
70  {
71  if ( anatomyType == ANATOMY_BRAIN ) {
72  return string("brain");
73  } else if ( anatomyType == ANATOMY_PROSTATE) {
74  return string("prostate");
75  } else {
76  return "UNDEFINED";
77  }
78  }
79 
80  static svkTypes::AnatomyType GetAnatomyType( string anatomyType)
81  {
82  if ( anatomyType.compare("brain") == 0 ) {
84  } else if ( anatomyType.compare("prostate") == 0 ) {
86  } else {
88  }
89  }
90 };
91 
92 }
93 
94 #endif //SVK_TYPES_H
95 
Definition: svkTypes.h:64
AnatomyType
Definition: svkTypes.h:63
Definition: svkTypes.h:65
static string GetAnatomyTypeString(AnatomyType anatomyType)
Definition: svkTypes.h:69
Definition: svkTypes.h:66
static svkTypes::AnatomyType GetAnatomyType(string anatomyType)
Definition: svkTypes.h:80
Definition: svkTypes.h:56