00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010  
00011 #ifndef HxDataPtr2dVec2Byte_h
00012 #define HxDataPtr2dVec2Byte_h
00013  
00014 #include "HxDataPtr2dTem.h"
00015 #include "HxVec2Byte.h"
00016  
00017 class HxDataPtr2dVec2Byte : public HxDataPtr2dTem<HxVec2Byte,HxVec2Int> {
00018 public:
00019     HxDataPtr2dVec2Byte(HxVec2Byte* data, int width) :
00020         HxDataPtr2dTem<HxVec2Byte,HxVec2Int>(data, width) {}
00021     HxDataPtr2dVec2Byte(HxVec2Byte* data, size_t* size) :
00022         HxDataPtr2dTem<HxVec2Byte,HxVec2Int>(data, size) {}
00023 };
00024  
00025 #endif