MyGUI 3.4.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
14namespace 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_
#define MYGUI_EXPORT
static const std::string & getEmptyString()
static const IntSize & getZeroIntSize()
static const UString & getEmptyUString()
static const IntPoint & getZeroIntPoint()
A UTF-16 string with implicit conversion to/from std::string and std::wstring.