- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ParserAction/SetOutputFormatsAction.cpp
rbe21fa rf10b0c 38 38 /** =========== define the function ====================== */ 39 39 Action::state_ptr ParserSetOutputFormatsAction::performCall() { 40 LOG(1, "Format list is: " << params.FormatList );41 for (vector<std::string>:: iterator iter = params.FormatList.begin(); iter != params.FormatList.end(); ++iter) {40 LOG(1, "Format list is: " << params.FormatList.get()); 41 for (vector<std::string>::const_iterator iter = params.FormatList.get().begin(); iter != params.FormatList.get().end(); ++iter) { 42 42 if (!FormatParserStorage::getInstance().add(*iter)) { 43 43 ELOG(1, "Unknown parser format in ParserSetOutputFormatsAction: '" << *iter << "'");
Note:
See TracChangeset
for help on using the changeset viewer.