rotor turning with measure input power is now working
[enigma2.git] / lib / gdi / esize.h
index d4bd4afb0d6bb1d4c5a6c0f24f490f1b7759eeaa..de0a6ecb5c5bf7112f75b05b0538d3f4cf07da8d 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)
 
@@ -52,26 +50,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
  *****************************************************************************/