Rev 462 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/* ----------------------------------------------------------------------- *
* This file is part of GEL, http://www.imm.dtu.dk/GEL
* Copyright (C) the authors and DTU Informatics
* For license and list of authors, see ../../doc/intro.pdf
* @brief Abstract 4D integer vector class
* ----------------------------------------------------------------------- */
/** @file ArithVec4Int.h
* @brief Abstract 4D integer vector class
*/
#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