AFF --- A container for numbers (array) by Friederich and Forbriger.
types.h
Go to the documentation of this file.
1 
38 // include guard
39 #ifndef AFF_TYPES_H_VERSION
40 
41 #define AFF_TYPES_H_VERSION \
42  "AFF_TYPES_H V1.0 "
43 
44 #include <cstddef>
45 
46 namespace aff {
47 
49  typedef unsigned short int Tdim;
51  typedef size_t Tsize;
53  typedef ptrdiff_t Tsubscript;
54  /*
56  typedef unsigned int Tdim;
58  typedef unsigned int Tsize;
60  typedef int Tsubscript;
61  */
62 
63 } // namespace aff
64 
65 #endif // AFF_TYPES_H_VERSION (includeguard)
66 
67 /* ----- END OF types.h ----- */
Root namespace of library.
Definition: array.h:148
unsigned short int Tdim
Type to hold an array dimensionality.
Definition: types.h:49
ptrdiff_t Tsubscript
Type to hold an array&#39;s subscript value.
Definition: types.h:53
size_t Tsize
Type to hold the size of an array dimension.
Definition: types.h:51