Subversion Repositories gelsvn

Rev

Rev 45 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 bj 1
#ifndef __CGLA__ARITHVECINT_H__
2
#define __CGLA__ARITHVECINT_H__
3
 
4
#include "ArithVec.h"
5
 
6
namespace CGLA {
7
 
8
	template<class T, class V, int N>
9
	class ArithVecInt: public ArithVec<T,V,N>
10
	{
11
	public:
12
 
13
		ArithVecInt() {}
14
 
15
		ArithVecInt(T a): 
16
			ArithVec<T,V,N>(a) {}
17
 
18
		ArithVecInt(T a, T b): 
19
			ArithVec<T,V,N>(a,b) {}
20
 
21
		ArithVecInt(T a, T b, T c): 
22
			ArithVec<T,V,N>(a,b,c) {}
23
 
24
		ArithVecInt(T a, T b, T c, T d): 
25
			ArithVec<T,V,N>(a,b,c,d) {}
26
 
27
	};
28
}
29
 
30
#endif
31