~flosoft/s25rttr/trunk

« back to all changes in this revision

Viewing changes to src/AddonAsyncDebug.h

  • Committer: FloSoft
  • Date: 2014-04-25 15:35:50 UTC
  • Revision ID: flosoft@siedler25.org-20140425153550-9muu4vodhlqu58m0
committing subversion revision 9357 by FloSoft
astyle

modified:
s25client/trunk/
s25client/trunk/contrib/lua/lin32/include/
s25client/trunk/contrib/lua/lin64/include/
s25client/trunk/contrib/lua/mac/include/
s25client/trunk/contrib/lua/win32/include/
s25client/trunk/contrib/lua/win64/include/
s25client/trunk/driver/audio/SDL/src/
s25client/trunk/driver/src/
s25client/trunk/driver/video/GLFW/src/
s25client/trunk/driver/video/SDL/src/
s25client/trunk/driver/video/WinAPI/src/
s25client/trunk/src/
s25client/trunk/win32/
s25client/trunk/win32/prebuild-mutex/src/

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 */
31
31
class AddonAsyncDebug : public AddonBool
32
32
{
33
 
public:
34
 
        AddonAsyncDebug() : AddonBool(ADDON_ASYNC_DEBUG,
35
 
                                                                                  ADDONGROUP_OTHER,
36
 
                                                                                  gettext_noop("Async debugging (REALLY SLOW!)"), 
37
 
                                                                                  gettext_noop("Enables extra stuff to debug asyncs. Do not enable unless you know what you are doing!"),
38
 
                                                                                  0
39
 
                                                                                 )
40
 
        {
41
 
        }
 
33
    public:
 
34
        AddonAsyncDebug() : AddonBool(ADDON_ASYNC_DEBUG,
 
35
                                          ADDONGROUP_OTHER,
 
36
                                          gettext_noop("Async debugging (REALLY SLOW!)"),
 
37
                                          gettext_noop("Enables extra stuff to debug asyncs. Do not enable unless you know what you are doing!"),
 
38
                                          0
 
39
                                         )
 
40
        {
 
41
        }
42
42
};
43
43
 
44
44
#endif // !ADDONASYNCDEBUG_H_INCLUDED