Initial check in of section file parser.

This commit is contained in:
Arthur Britto
2012-04-03 22:45:24 -07:00
parent eb05274e20
commit d72b670afc
2 changed files with 83 additions and 0 deletions

13
src/ParseSection.h Normal file
View 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