Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

size.h

Go to the documentation of this file.
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

Generated at Wed Apr 4 19:54:03 2001 for ClanLib by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001