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