diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-10-06 09:31:04 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-10-06 09:31:04 +0200 |
commit | 103bb43176501953c3c4e873fe45d74950ffcf4d (patch) | |
tree | ffb31d2f9f7f9e24e5ee9b1e9b547fa3c7985834 /dxr3osd.h | |
parent | 34c05c5693dd8a8b02584026e690dfa107cec712 (diff) | |
download | vdr-plugin-dxr3-103bb43176501953c3c4e873fe45d74950ffcf4d.tar.gz vdr-plugin-dxr3-103bb43176501953c3c4e873fe45d74950ffcf4d.tar.bz2 |
fix codeing style
Diffstat (limited to 'dxr3osd.h')
-rw-r--r-- | dxr3osd.h | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -5,8 +5,7 @@ // ================================== // osd plugin provider -class cDxr3OsdProvider : public cOsdProvider -{ +class cDxr3OsdProvider : public cOsdProvider { public: cDxr3OsdProvider() {} virtual cOsd *CreateOsd(int Left, int Top, uint Level); @@ -14,15 +13,7 @@ public: // ================================== // osd interface -class cDxr3Osd : public cOsd -{ -private: - cSPUEncoder* Spu; ///< interface to cSPUEncoder - bool shown; ///< is the osd shown? - cPalette* Palette; ///< global palette (needed by all bitmaps) - cTimeMs *last; -protected: - virtual void SetActive(bool On); +class cDxr3Osd : public cOsd { public: cDxr3Osd(int Left, int Top, uint Level); ~cDxr3Osd(); @@ -31,6 +22,15 @@ public: eOsdError SetAreas(const tArea *Areas, int NumAreas); void Flush(); + +protected: + virtual void SetActive(bool On); + +private: + cSPUEncoder* Spu; ///< interface to cSPUEncoder + bool shown; ///< is the osd shown? + cPalette* Palette; ///< global palette (needed by all bitmaps) + cTimeMs *last; }; #endif /*_DXR3_OSD_H_*/ |