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