CMS 3D CMS Logo

fixedArray.h
Go to the documentation of this file.
1 #ifndef FIXEDARRAY_H
2 #define FIXEDARRAY_H
3 
5 template <typename T, unsigned int S>
6 class fixedArray {
7 public:
8  fixedArray() {}
9 
10  operator T*() { return content; }
11  operator const T*() const { return content; }
12  T& operator[](const unsigned int i) { return content[i]; }
13  const T& operator[](const unsigned int i) const { return content[i]; }
14 
15 private:
17 
19 };
20 #endif
fixedArray()
Definition: fixedArray.h:8
T & operator[](const unsigned int i)
Definition: fixedArray.h:12
#define COND_SERIALIZABLE
Definition: Serializable.h:39
const T & operator[](const unsigned int i) const
Definition: fixedArray.h:13
long double T
T content[S]
Definition: fixedArray.h:16