X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fgdi%2Fesize.h;h=de0a6ecb5c5bf7112f75b05b0538d3f4cf07da8d;hp=d4bd4afb0d6bb1d4c5a6c0f24f490f1b7759eeaa;hb=ba02fb4aced5868d047a5bffbd2ed87583daee4d;hpb=2494509cd031727d92c6556089c99711d16d8af9 diff --git a/lib/gdi/esize.h b/lib/gdi/esize.h index d4bd4af..de0a6ec 100644 --- a/lib/gdi/esize.h +++ b/lib/gdi/esize.h @@ -1,8 +1,6 @@ #ifndef ESIZE_H #define ESIZE_H -#include - #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 *****************************************************************************/