Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
462 jab 1
#ifndef __CGLA__ARITHVEC4INT_H__
2
#define __CGLA__ARITHVEC4INT_H__
3
 
4
#include "ArithVecInt.h"
5
 
6
namespace CGLA {
7
 
8
	template<class T, class V>
9
	class ArithVec4Int: public ArithVecInt<T,V,4>
10
	{
11
	public:
12
 
13
		/// Construct a 4D int vector.
14
		ArithVec4Int(T a, T b, T c, T d): ArithVecInt<T,V,4>(a,b,c,d) {}
15
 
16
		/// Construct a 4D int vector.
17
		ArithVec4Int() {}
18
 
19
	};
20
}
21
 
22
#endif
23