DLBmpManager.h 237 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #pragma once #ifndef DL_BMP_MANAGER #define DL_BMP_MANAGER #include <string> using namespace std; class CDLBmpManager { public: string ReadBmp(const char* pBmpName); private: string Encode(const char* Data, int DataByte); }; #endif