Subversion Repositories gelsvn

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef __CGLA__ARITHVECINT_H__
#define __CGLA__ARITHVECINT_H__

#include "ArithVec.h"

namespace CGLA {

        template<class T, class V, int N>
        class ArithVecInt: public ArithVec<T,V,N>
        {
        public:

                ArithVecInt() {}

                ArithVecInt(T a): 
                        ArithVec<T,V,N>(a) {}

                ArithVecInt(T a, T b): 
                        ArithVec<T,V,N>(a,b) {}

                ArithVecInt(T a, T b, T c): 
                        ArithVec<T,V,N>(a,b,c) {}

                ArithVecInt(T a, T b, T c, T d): 
                        ArithVec<T,V,N>(a,b,c,d) {}

        };
}

#endif