Subversion Repositories gelsvn

Rev

Rev 45 | Go to most recent revision | 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
 * ----------------------------------------------------------------------- */
6
 
7
/** @file ArithVecInt.h
8
 * @brief Abstract integer vector class
9
 */
10
 
2 bj 11
#ifndef __CGLA__ARITHVECINT_H__
12
#define __CGLA__ARITHVECINT_H__
13
 
14
#include "ArithVec.h"
15
 
16
namespace CGLA {
17
 
45 jab 18
	template<class T, class V, unsigned int N>
2 bj 19
	class ArithVecInt: public ArithVec<T,V,N>
20
	{
21
	public:
22
 
23
		ArithVecInt() {}
24
 
25
		ArithVecInt(T a): 
26
			ArithVec<T,V,N>(a) {}
27
 
28
		ArithVecInt(T a, T b): 
29
			ArithVec<T,V,N>(a,b) {}
30
 
31
		ArithVecInt(T a, T b, T c): 
32
			ArithVec<T,V,N>(a,b,c) {}
33
 
34
		ArithVecInt(T a, T b, T c, T d): 
35
			ArithVec<T,V,N>(a,b,c,d) {}
36
 
37
	};
38
}
39
 
40
#endif
41