Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
200km committed Oct 5, 2024
1 parent 5ed8ea4 commit 7611fe7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
7 changes: 4 additions & 3 deletions src/simulation/spacecraft/user_components.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
#include <utilities/macros.hpp>

UserComponents::UserComponents(const s2e::dynamics::Dynamics *dynamics, s2e::spacecraft::Structure *structure,
const s2e::environment::LocalEnvironment *local_environment, const s2e::environment::GlobalEnvironment *global_environment,
const s2e::simulation::SimulationConfiguration *configuration, s2e::environment::ClockGenerator *clock_generator,
const unsigned int spacecraft_id)
const s2e::environment::LocalEnvironment *local_environment,
const s2e::environment::GlobalEnvironment *global_environment,
const s2e::simulation::SimulationConfiguration *configuration, s2e::environment::ClockGenerator *clock_generator,
const unsigned int spacecraft_id)
: configuration_(configuration),
dynamics_(dynamics),
structure_(structure),
Expand Down
15 changes: 7 additions & 8 deletions src/simulation/spacecraft/user_satellite.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,23 @@
#define S2E_SIMULATION_SPACECRAFT_USER_SATELLITE_HPP_

#include <simulation/spacecraft/spacecraft.hpp>

#include "user_components.hpp"

/**
* @class UserSatellite
* @brief An example of user side spacecraft class
*/
class UserSatellite : public s2e::spacecraft::Spacecraft
{
public:
class UserSatellite : public s2e::spacecraft::Spacecraft {
public:
/**
* @fn UserSatellite
* @brief Constructor
*/
UserSatellite(const s2e::simulation::SimulationConfiguration *simulation_configuration, const s2e::environment::GlobalEnvironment *global_environment,
const unsigned int spacecraft_id);
UserSatellite(const s2e::simulation::SimulationConfiguration *simulation_configuration,
const s2e::environment::GlobalEnvironment *global_environment, const unsigned int spacecraft_id);

private:
private:
};

#endif // S2E_SIMULATION_SPACECRAFT_USER_SATELLITE_HPP_

#endif // S2E_SIMULATION_SPACECRAFT_USER_SATELLITE_HPP_

0 comments on commit 7611fe7

Please sign in to comment.