00001 /* 00002 * Copyright (c) 1996, University of Amsterdam, The Netherlands. 00003 * All rights reserved. 00004 * 00005 * 00006 * Author(s): 00007 * Dennis Koelma (koelma@wins.uva.nl) 00008 * Edo Poll (poll@wins.uva.nl) 00009 */ 00010 00011 #ifndef HxDataPtr2dByte_h 00012 #define HxDataPtr2dByte_h 00013 00014 #include "HxDataPtr2dScalarTem.h" 00015 #include "HxByte.h" 00016 00017 class HxDataPtr2dByte : public HxDataPtr2dScalarTem<HxByte,HxScalarInt> { 00018 public: 00019 HxDataPtr2dByte(HxByte* data, int width) : 00020 HxDataPtr2dScalarTem<HxByte,HxScalarInt>(data, width) {} 00021 HxDataPtr2dByte(HxByte* data, size_t* size) : 00022 HxDataPtr2dScalarTem<HxByte,HxScalarInt>(data, size) {} 00023 }; 00024 00025 #endif