Skip to content

Commit

Permalink
Fix #5246 - ScheduleFile missing a columnSeparatorValues function
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarrec committed Jan 14, 2025
1 parent afef7c9 commit d30d881
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/model/ScheduleFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,10 @@ namespace model {
return {IddObjectType::OS_Schedule_File};
}

std::vector<std::string> ScheduleFile::columnSeparatorValues() {
return getIddKeyNames(IddFactory::instance().getObject(iddObjectType()).get(), OS_Schedule_FileFields::ColumnSeparator);
}

std::vector<std::string> ScheduleFile::minutesperItemValues() {
return getIddKeyNames(IddFactory::instance().getObject(iddObjectType()).get(), OS_Schedule_FileFields::MinutesperItem);
}
Expand Down
1 change: 1 addition & 0 deletions src/model/ScheduleFile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ namespace model {

static IddObjectType iddObjectType();

static std::vector<std::string> columnSeparatorValues();
static std::vector<std::string> minutesperItemValues();

/** @name Getters */
Expand Down

0 comments on commit d30d881

Please sign in to comment.