Subversion Repositories gelsvn

Rev

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

#ifndef __CGLA__ARITHVEC4INT_H__
#define __CGLA__ARITHVEC4INT_H__

#include "ArithVecInt.h"

namespace CGLA {

        template<class T, class V>
        class ArithVec4Int: public ArithVecInt<T,V,4>
        {
        public:

                /// Construct a 4D int vector.
                ArithVec4Int(T a, T b, T c, T d): ArithVecInt<T,V,4>(a,b,c,d) {}

                /// Construct a 4D int vector.
                ArithVec4Int() {}
                
        };
}

#endif