Skip to content

Commit

Permalink
file RobotManager.hpp -> IRobotManager.hpp, #120
Browse files Browse the repository at this point in the history
Rename file RobotManager.hpp -> IRobotManager.hpp and update links for #120
  • Loading branch information
jgvictores committed Dec 2, 2017
1 parent 990b1e1 commit 24f52db
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/libraries/GameStatesLib/DeadState.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "ImageManager.hpp"
#include "InputManager.hpp"
#include "MentalMap.hpp"
#include "RobotManager.hpp"
#include "IRobotManager.hpp"
#include "AudioManager.hpp"
#include "ScreenManager.hpp"
#include "DeadScreen.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/GameStatesLib/GameState.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "ImageManager.hpp"
#include "InputManager.hpp"
#include "MentalMap.hpp"
#include "RobotManager.hpp"
#include "IRobotManager.hpp"
#include "AudioManager.hpp"
#include "ScreenManager.hpp"
#include "Key.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/GameStatesLib/InitState.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "ImageManager.hpp"
#include "InputManager.hpp"
#include "MentalMap.hpp"
#include "RobotManager.hpp"
#include "IRobotManager.hpp"
#include "AudioManager.hpp"
#include "ScreenManager.hpp"
#include "Key.hpp"
Expand Down
4 changes: 2 additions & 2 deletions src/libraries/RobotLib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

find_package(YARP REQUIRED)

add_library(RobotLib MockRobotManager.hpp
add_library(RobotLib IRobotManager.hpp
MockRobotManager.hpp
MockRobotManager.cpp
RobotManager.hpp
YarpRobotManager.hpp
YarpRobotManager.cpp)

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/libraries/RobotLib/MockRobotManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include <string>

#include "RobotManager.hpp"
#include "IRobotManager.hpp"

namespace rd{

Expand Down
2 changes: 1 addition & 1 deletion src/libraries/RobotLib/YarpRobotManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <yarp/os/RpcClient.h>
#include <yarp/dev/all.h> // VOCAB macros

#include "RobotManager.hpp"
#include "IRobotManager.hpp"

#define VOCAB_MOVE_FORWARD VOCAB4('m','o','v','f')
#define VOCAB_MOVE_BACKWARDS VOCAB4('m','o','v','b')
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/UtilsLib/Hub.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "InputManager.hpp"
#include "MentalMap.hpp"
#include "NetworkManager.hpp"
#include "RobotManager.hpp"
#include "IRobotManager.hpp"
#include "AudioManager.hpp"
#include "ScreenManager.hpp"

Expand Down
2 changes: 1 addition & 1 deletion src/programs/robotDevastation/RobotDevastation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "SDLInputManager.hpp"
#include "InputEventListener.hpp"
#include "YarpNetworkManager.hpp"
#include "RobotManager.hpp"
#include "IRobotManager.hpp"
#include "YarpRobotManager.hpp"
#include "MockRobotManager.hpp"
#include "StateMachine.hpp"
Expand Down

0 comments on commit 24f52db

Please sign in to comment.