MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / columnSeparator

Method columnSeparator

src/model/ScheduleFile.cpp:96–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94 }
95
96 std::string ScheduleFile_Impl::columnSeparator() const {
97 boost::optional<std::string> value = getString(OS_Schedule_FileFields::ColumnSeparator, true);
98 OS_ASSERT(value);
99 return value.get();
100 }
101
102 char ScheduleFile_Impl::columnSeparatorChar() const {
103 static const std::unordered_map<std::string, char> lookup({{"Comma", ','}, {"Tab", '\t'}, {"Fixed", ' '}, {"Space", ' '}, {"Semicolon", ';'}});

Callers 5

TEST_FFunction · 0.45
TEST_FFunction · 0.45
translateScheduleFileMethod · 0.45
TEST_FFunction · 0.45

Calls 1

getMethod · 0.45

Tested by 3

TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36