Changeset 2111 for code/branches/objecthierarchy/src/util/Clipboard.cc
- Timestamp:
- Nov 2, 2008, 12:38:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/util/Clipboard.cc
r1791 r2111 37 37 38 38 #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 47 namespace orxonox 48 { 44 49 45 50 /** … … 97 102 return ""; 98 103 } 99 #else 100 ///////////// 101 // Default // 102 ///////////// 104 } 103 105 106 #else /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 */ 107 108 ///////////// 109 // Default // 110 ///////////// 111 112 namespace orxonox 113 { 104 114 std::string clipboard = ""; //!< Keeps the text of our internal clipboard 105 115 … … 123 133 return clipboard; 124 134 } 125 #endif 135 } 136 137 #endif /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 */
Note: See TracChangeset
for help on using the changeset viewer.