DGtal  1.4.beta
CBoundedNumber.h
1 
17 #pragma once
18 
31 #if defined(CBoundedInteger_RECURSES)
32 #error Recursive header files inclusion detected in CBoundedInteger.h
33 #else // defined(CBoundedInteger_RECURSES)
35 #define CBoundedInteger_RECURSES
36 
37 #if !defined CBoundedInteger_h
39 #define CBoundedInteger_h
40 
42 // Inclusions
43 #include <iostream>
44 #include "boost/concept_check.hpp"
45 #include "DGtal/base/ConceptUtils.h"
46 #include "DGtal/base/Common.h"
47 #include "DGtal/kernel/NumberTraits.h"
48 #include "DGtal/base/CQuantity.h"
50 
51 namespace DGtal
52 {
53  namespace concepts
54  {
56  // class CBoundedNumber
95  template <typename T>
97  {
98  // ----------------------- Concept checks ------------------------------
99  public:
101  {
102 
103  // Bounded Number should have a TagTrue tag to IsBounded type.
105 
106  }
107 
108  // ------------------------- Private Datas --------------------------------
109  private:
110  T myX;
112 
113  // ------------------------- Internals ------------------------------------
114  private:
115 
116  }; // end of concept CBoundedNumber
117  }
118 } // namespace DGtal
119 
120 // //
122 
123 #endif // !defined CBoundedNumber_h
124 
125 #undef CBoundedNumber_RECURSES
126 #endif // else defined(CBoundedNumber_RECURSES)
void checkTrue(const TagTrue &tag)
DGtal is the top-level namespace which contains all DGtal functions and types.
Aim: The concept CBoundedNumber specifies what are the bounded numbers. Models of this concept should...
NumberTraits< T >::IsBounded myIsBounded
Aim: defines the concept of quantity in DGtal.
Definition: CQuantity.h:93