MyGUI  3.2.1
MyGUI_Constants.h
Go to the documentation of this file.
1 /*
2  * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3  * Distributed under the MIT License
4  * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5  */
6 
7 #ifndef __MYGUI_CONSTANTS_H__
8 #define __MYGUI_CONSTANTS_H__
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_UString.h"
12 #include "MyGUI_Types.h"
13 
14 namespace MyGUI
15 {
16 
18  {
19  public:
20  static const UString& getEmptyUString()
21  {
22  return mUString;
23  }
24  static const std::string& getEmptyString()
25  {
26  return mString;
27  }
28  static const IntSize& getZeroIntSize()
29  {
30  return mIntSize;
31  }
32  static const IntPoint& getZeroIntPoint()
33  {
34  return mIntPoint;
35  }
36 
37  private:
38  static UString mUString;
39  static std::string mString;
40  static IntSize mIntSize;
41  static IntPoint mIntPoint;
42  };
43 
44 } // namespace MyGUI
45 
46 #endif // __MYGUI_CONSTANTS_H__