mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Initial check in of section file parser.
This commit is contained in:
13
src/ParseSection.h
Normal file
13
src/ParseSection.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef _PARSE_SECTION_
|
||||
#define _PARSE_SECTION_
|
||||
|
||||
#include <map>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
typedef std::map<const std::string, std::vector<std::string> > section;
|
||||
|
||||
section ParseSection(const std::string strInput, const bool bTrim);
|
||||
void PrintSection(section secInput);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user