Changeset 2030 for code/branches/objecthierarchy/src
- Timestamp:
- Oct 28, 2008, 8:44:52 PM (16 years ago)
- Location:
- code/branches/objecthierarchy/src
- Files:
-
- 5 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/CMakeLists.txt
r2027 r2030 1 1 SET( ORXONOX_SRC_FILES 2 CameraHandler.cc 2 3 GraphicsEngine.cc 3 4 LevelManager.cc 4 5 Main.cc 5 6 Settings.cc 6 SignalHandler.cc7 7 8 8 gamestates/GSClient.cc … … 44 44 tools/WindowEventListener.cc 45 45 46 objects/CameraHandler.cc47 46 objects/Radar.cc 48 47 objects/RadarListener.cc -
code/branches/objecthierarchy/src/orxonox/CameraHandler.cc
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/code/branches/ceguilua/src/orxonox/objects/CameraHandler.cc merged eligible /code/branches/core3/src/orxonox/objects/CameraHandler.cc merged eligible /code/branches/gui/src/orxonox/objects/CameraHandler.cc merged eligible /code/branches/script_trigger/src/orxonox/objects/CameraHandler.cc merged eligible /code/branches/gcc43/src/orxonox/objects/CameraHandler.cc 1580 /code/branches/input/src/orxonox/objects/CameraHandler.cc 1629-1636
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
code/branches/objecthierarchy/src/orxonox/CameraHandler.h
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/code/branches/ceguilua/src/orxonox/objects/CameraHandler.h merged eligible /code/branches/core3/src/orxonox/objects/CameraHandler.h merged eligible /code/branches/gui/src/orxonox/objects/CameraHandler.h merged eligible /code/branches/script_trigger/src/orxonox/objects/CameraHandler.h merged eligible /code/branches/gcc43/src/orxonox/objects/CameraHandler.h 1580 /code/branches/input/src/orxonox/objects/CameraHandler.h 1629-1636
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
code/branches/objecthierarchy/src/orxonox/Main.cc
r1896 r2030 40 40 #include "util/OrxonoxPlatform.h" 41 41 #include "util/Debug.h" 42 #include "util/SignalHandler.h" 42 43 #include "core/ConfigFileManager.h" 43 #include "SignalHandler.h"44 44 45 45 #include "gamestates/GSRoot.h" -
code/branches/objecthierarchy/src/orxonox/gamestates/GSLevel.cc
r2023 r2030 41 41 #include "core/Core.h" 42 42 //#include "objects/Backlight.h" 43 #include "objects/CameraHandler.h"44 43 #include "objects/Tickable.h" 45 44 #include "objects/Radar.h" 46 45 //#include "tools/ParticleInterface.h" 46 #include "CameraHandler.h" 47 47 #include "LevelManager.h" 48 48 #include "Settings.h" -
code/branches/objecthierarchy/src/orxonox/objects/worldentities/Camera.cc
r2027 r2030 41 41 #include "core/ConfigValueIncludes.h" 42 42 #include "objects/Scene.h" 43 #include " objects/CameraHandler.h"43 #include "CameraHandler.h" 44 44 45 45 namespace orxonox -
code/branches/objecthierarchy/src/util/CMakeLists.txt
r1844 r2030 8 8 OutputBuffer.cc 9 9 OutputHandler.cc 10 SignalHandler.cc 10 11 String.cc 11 12 SubString.cc -
code/branches/objecthierarchy/src/util/SignalHandler.cc
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/code/branches/ceguilua/src/orxonox/SignalHandler.cc merged eligible /code/branches/core3/src/orxonox/SignalHandler.cc merged eligible /code/branches/gcc43/src/orxonox/SignalHandler.cc 1580 /code/branches/gui/src/orxonox/SignalHandler.cc 1635-1723 /code/branches/input/src/orxonox/SignalHandler.cc 1629-1636 /code/branches/script_trigger/src/orxonox/SignalHandler.cc 1295-1953,1955
r2028 r2030 28 28 29 29 /** 30 @file SignalHandler.cc30 @file 31 31 @brief Implementation of the SignalHandler class. 32 32 */ 33 33 34 #include "OrxonoxStableHeaders.h"35 34 #include "SignalHandler.h" 36 #include " util/Debug.h"37 38 #include < assert.h>35 #include "Debug.h" 36 37 #include <cassert> 39 38 #include <iostream> 40 39 #include <cstdlib> -
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
code/branches/objecthierarchy/src/util/SignalHandler.h
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/code/branches/ceguilua/src/orxonox/SignalHandler.h merged eligible /code/branches/core3/src/orxonox/SignalHandler.h merged eligible /code/branches/gcc43/src/orxonox/SignalHandler.h 1580 /code/branches/gui/src/orxonox/SignalHandler.h 1635-1723 /code/branches/input/src/orxonox/SignalHandler.h 1629-1636 /code/branches/script_trigger/src/orxonox/SignalHandler.h 1295-1953,1955
r2028 r2030 28 28 29 29 /** 30 @file SignalHandler.h30 @file 31 31 @brief Declaration of the SignalHandler class. 32 32 */ … … 35 35 #define _SignalHandler_H__ 36 36 37 #include " OrxonoxPrereqs.h"37 #include "UtilPrereqs.h" 38 38 39 39 #include <list> … … 93 93 #else /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 */ 94 94 95 class _ OrxonoxExport SignalHandler95 class _UtilExport SignalHandler 96 96 { 97 97 public: -
Property
svn:mergeinfo
set to
(toggle deleted branches)
Note: See TracChangeset
for help on using the changeset viewer.