GEL  2
GEL is a library for Geometry and Linear Algebra
/Users/jab/Documents/Teaching/02585/GEL2_and_demos/GEL/src/CGLA/ArithVecInt.h
00001 #ifndef __CGLA__ARITHVECINT_H__
00002 #define __CGLA__ARITHVECINT_H__
00003 
00004 #include "ArithVec.h"
00005 
00006 namespace CGLA {
00007 
00008         template<class T, class V, unsigned int N>
00009         class ArithVecInt: public ArithVec<T,V,N>
00010         {
00011         public:
00012 
00013                 ArithVecInt() {}
00014 
00015                 ArithVecInt(T a): 
00016                         ArithVec<T,V,N>(a) {}
00017 
00018                 ArithVecInt(T a, T b): 
00019                         ArithVec<T,V,N>(a,b) {}
00020 
00021                 ArithVecInt(T a, T b, T c): 
00022                         ArithVec<T,V,N>(a,b,c) {}
00023 
00024                 ArithVecInt(T a, T b, T c, T d): 
00025                         ArithVec<T,V,N>(a,b,c,d) {}
00026 
00027         };
00028 }
00029 
00030 #endif
00031 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations