summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15/LCDFramework/src/CLCDBitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirandaG15/LCDFramework/src/CLCDBitmap.h')
-rw-r--r--plugins/MirandaG15/LCDFramework/src/CLCDBitmap.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/plugins/MirandaG15/LCDFramework/src/CLCDBitmap.h b/plugins/MirandaG15/LCDFramework/src/CLCDBitmap.h
deleted file mode 100644
index d8c7813b81..0000000000
--- a/plugins/MirandaG15/LCDFramework/src/CLCDBitmap.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _CLCDBITMAP_H_
-#define _CLCDBITMAP_H_
-
-#include "CLCDGfx.h"
-#include "CLCDObject.h"
-
-class CLCDBitmap : public CLCDObject
-{
-public:
- // constructor
- CLCDBitmap();
- // destructor
- ~CLCDBitmap();
-
- // Initializes the bitmap
- bool Initialize();
- // Deinitializes the bitmap
- bool Shutdown();
-
- // updates the bitmap
- bool Update();
- // draws the bitmap
- bool Draw(CLCDGfx *pGfx);
-
- // Sets the bitmap
- void SetBitmap(HBITMAP hBitmap);
-private:
- HBITMAP m_hBitmap;
-};
-
-#endif \ No newline at end of file