14 lines
226 B
C
14 lines
226 B
C
|
#ifndef HGL_2D_BITMAP_INCLUDE
|
||
|
#define HGL_2D_BITMAP_INCLUDE
|
||
|
|
||
|
namespace hgl
|
||
|
{
|
||
|
/**
|
||
|
* 简单的2D象素处理
|
||
|
*/
|
||
|
template<typename T> class Bitmap2D
|
||
|
{
|
||
|
};//
|
||
|
}//namespace hgl
|
||
|
#endif//HGL_2D_BITMAP_INCLUDE
|