Subversion Repositories gelsvn

Rev

Rev 462 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
595 jab 1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * @brief Abstract 4D integer vector class
6
 * ----------------------------------------------------------------------- */
7
 
8
/** @file ArithVec4Int.h
9
 * @brief Abstract 4D integer vector class
10
 */
11
 
462 jab 12
#ifndef __CGLA__ARITHVEC4INT_H__
13
#define __CGLA__ARITHVEC4INT_H__
14
 
15
#include "ArithVecInt.h"
16
 
17
namespace CGLA {
18
 
19
	template<class T, class V>
20
	class ArithVec4Int: public ArithVecInt<T,V,4>
21
	{
22
	public:
23
 
24
		/// Construct a 4D int vector.
25
		ArithVec4Int(T a, T b, T c, T d): ArithVecInt<T,V,4>(a,b,c,d) {}
26
 
27
		/// Construct a 4D int vector.
28
		ArithVec4Int() {}
29
 
30
	};
31
}
32
 
33
#endif
34