Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 2, 2008, 12:38:26 PM (16 years ago)
Author:
rgrieder
Message:

Moved all util classes and functions to orxonox namespace.
Converted all code to 4 spaces/tab in util.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/util/Clipboard.cc

    r1791 r2111  
    3737
    3838#if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32
    39     /////////////
    40     // Windows //
    41     /////////////
    42     #include <windows.h>
    43     #include "Debug.h"
     39
     40/////////////
     41// Windows //
     42/////////////
     43
     44#include <windows.h>
     45#include "Debug.h"
     46
     47namespace orxonox
     48{
    4449
    4550    /**
     
    97102        return "";
    98103    }
    99 #else
    100     /////////////
    101     // Default //
    102     /////////////
     104}
    103105
     106#else /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 */
     107
     108/////////////
     109// Default //
     110/////////////
     111
     112namespace orxonox
     113{
    104114    std::string clipboard = ""; //!< Keeps the text of our internal clipboard
    105115
     
    123133        return clipboard;
    124134    }
    125 #endif
     135}
     136
     137#endif /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 */
Note: See TracChangeset for help on using the changeset viewer.