Skip to content

Commit 5d50f46

Browse files
committed
Moved parts of our Generator class to our new GeneratorInterpreter class.
1 parent bad703f commit 5d50f46

7 files changed

+1764
-279
lines changed

src/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ set(SOURCE_FILES
4949
${CMAKE_CURRENT_SOURCE_DIR}/entity.cpp
5050
${CMAKE_CURRENT_SOURCE_DIR}/enums.cpp
5151
${CMAKE_CURRENT_SOURCE_DIR}/generator.cpp
52+
${CMAKE_CURRENT_SOURCE_DIR}/generatorinterpreter.cpp
5253
${CMAKE_CURRENT_SOURCE_DIR}/generatorprofile.cpp
5354
${CMAKE_CURRENT_SOURCE_DIR}/generatorprofiletools.cpp
5455
${CMAKE_CURRENT_SOURCE_DIR}/importedentity.cpp
@@ -133,6 +134,8 @@ set(GIT_HEADER_FILES
133134
${CMAKE_CURRENT_SOURCE_DIR}/debug.h
134135
${CMAKE_CURRENT_SOURCE_DIR}/entity_p.h
135136
${CMAKE_CURRENT_SOURCE_DIR}/generator_p.h
137+
${CMAKE_CURRENT_SOURCE_DIR}/generatorinterpreter_p.h
138+
${CMAKE_CURRENT_SOURCE_DIR}/generatorinterpreter.h
136139
${CMAKE_CURRENT_SOURCE_DIR}/generatorprofile_p.h
137140
${CMAKE_CURRENT_SOURCE_DIR}/generatorprofilesha1values.h
138141
${CMAKE_CURRENT_SOURCE_DIR}/generatorprofiletools.h

src/debug.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626
#include "libcellml/model.h"
2727
#include "libcellml/variable.h"
2828

29-
#include "generator_p.h"
29+
#include "generatorinterpreter_p.h"
3030
#include "utilities.h"
3131

3232
namespace libcellml {

0 commit comments

Comments
 (0)