GTXclient C++ API  GTXserver-17.0.3
GTXFaultInfo.hpp
1 /*****************************************************************************
2 
3  Copyright (c)2007 Geovariances, Avon, France.
4 
5  In consideration of payment of the license fee, which is a part of
6  the price you paid for this product, Geovariances (GV) as licensor,
7  grants you, the licensee, a non-exclusive right to use this copy of a
8  GV software product.
9  GV reserves all rights not expressly granted to licensee. GV retains
10  titleship and ownership of software. This license is not a sale of
11  the original software or any copy. GV also retains titleship and
12  ownership of any modifications or derivations of this software. Any
13  modifications of this software must be clearly marked as such. This
14  copyright message must appear in its entirety in this software, or
15  any modifications or derivations thereof.
16 
17  Geovariances welcomes any comments, suggestions, bug reports, etc. At
18  the discretion of Geovariances, any customer supplied bug fixes,
19  enhancements, or utility codes will be distributed in future software
20  releases (the contributor will of course be credited).
21 
22  Geovariances
23  49bis, Avenue Franklin Roosevelt
24  77210 Avon, FRANCE
25 
26  Phone: +33-(0)-160.749.100
27  Fax: +33-(0)-164.228.728
28  e-mail: support@geovariances.fr
29 
30  All Rights Reserved
31 
32 *****************************************************************************/
33 
34 #ifndef __GTXFaultInfo_hpp__
35 #define __GTXFaultInfo_hpp__
36 
37 #define __USING_GTXSERVER_CPP_API__
38 
39 #ifdef DOXYGEN
40 #define SWIG_OR_DOXYGEN
41 #endif //DOXYGEN
42 
43 #ifdef SWIG
44 #define GLOBAL_CLASS
45 #define SWIG_OR_DOXYGEN
46 #else //SWIG
47 #include <GTXClient.h>
48 #endif //SWIG
49 
53 class GLOBAL_CLASS GTXFaultInfo
54 {
55 public:
57  GTXFaultInfo();
59  GTXFaultInfo(const GTXFaultInfo &in_finfo);
60 
62  bool GetFaults2DFlag();
64  bool GetAuxiliaryVarUsedFlag();
66  int GetFaultsNumber();
68  int GetSegmentsNumber();
70  int GetMinimumPriority();
72  int GetMaximumPriority();
74  int GetAuthorizedPriority();
75 
76 private:
77  GTXFaultInfo_C _cinfo;
78  friend class GTXFileInfo;
79 };
80 
83 {
84 }
85 
88 {
89  _cinfo = in_finfo._cinfo;
90 }
91 
93 {
94  return _cinfo.faults_2d != 0;
95 }
96 
98 {
99  return _cinfo.aux_var_used != 0;
100 }
101 
103 {
104  return _cinfo.faults_number;
105 }
106 
108 {
109  return _cinfo.segments_number;
110 }
111 
113 {
114  return _cinfo.min_fpriority;
115 }
116 
118 {
119  return _cinfo.max_fpriority;
120 }
121 
123 {
124  return _cinfo.auth_priority;
125 }
126 
127 #endif // __GTXFaultInfo_hpp__