Skip to content

Commit

Permalink
rename library.h into system.h
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Dec 11, 2024
1 parent 3df0a31 commit 963cbea
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
*/

#pragma once
#include <stdexcept>

#include "antares/solver/systemParser/library.h"

Expand Down
1 change: 1 addition & 0 deletions src/solver/systemParser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ set(SOURCES
parser.cpp
encoders.hxx
include/antares/solver/systemParser/parser.h
include/antares/solver/systemParser/system.h
)

# Create the library
Expand Down
2 changes: 1 addition & 1 deletion src/solver/systemParser/encoders.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#pragma once

#include "antares/solver/systemParser/library.h"
#include "antares/solver/systemParser/system.h"

#include "yaml-cpp/yaml.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,13 @@
*/

#pragma once
#include "antares/solver/systemParser/library.h"
#include "antares/solver/systemParser/system.h"

namespace Antares::Solver::SystemParser
{
class Parser
{
public:
Parser() = default;
~Parser() = default;

System parse(const std::string& content);
};
} // namespace Antares::Solver::SystemParser
2 changes: 1 addition & 1 deletion src/solver/systemParser/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include "antares/solver/systemParser/parser.h"

#include "antares/solver/systemParser/library.h"
#include "antares/solver/systemParser/system.h"

#include "encoders.hxx"

Expand Down

0 comments on commit 963cbea

Please sign in to comment.