- reenable lcd support
[vuplus_dvbapp] / lib / gdi / esize.h
index d4bd4af..de0a6ec 100644 (file)
@@ -1,8 +1,6 @@
 #ifndef ESIZE_H
 #define ESIZE_H
 
-#include <iostream>
-
 #define MIN(a,b) (a < b ? a : b)
 #define MAX(a,b) (a > b ? a : b)
 
@@ -53,26 +51,6 @@ private:
 
 
 /*****************************************************************************
-  eSize stream functions
- *****************************************************************************/
-
-namespace std
-{
-       inline ostream &operator<<( ostream &s, const eSize &sz )
-       {
-               s << sz.width() << sz.height();
-               return s;
-       }
-
-       inline istream &operator>>( istream &s, eSize &sz )
-       {
-               s >> sz.rwidth() >> sz.rheight();
-         return s;
-       }
-}
-
-
-/*****************************************************************************
   eSize inline functions
  *****************************************************************************/