00001 /* 00002 ClanGUI, copyrights by various people. Have a look in the CREDITS file. 00003 00004 This sourcecode is distributed using the Library GNU Public Licence, 00005 version 2 or (at your option) any later version. Please read LICENSE 00006 for details. 00007 */ 00008 00010 00011 #ifndef header_size 00012 #define header_size 00013 00014 class CL_Size 00015 { 00016 public: 00017 CL_Size() : width(0), height(0) { } 00018 CL_Size(int w, int h) : width(w), height(h) { } 00019 00020 int width, height; 00021 }; 00022 00023 #endif
1.2.6 written by Dimitri van Heesch,
© 1997-2001