git-svn-id: svn://db.shs.com.ru/pip@557 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2017-11-20 19:53:28 +00:00
parent a3d9dce7c5
commit fde7d7bc80
9 changed files with 240 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
#ifndef PIRC_PARSER_H
#define PIRC_PARSER_H
#include "pidir.h"
#include "pifile.h"
struct ParserSection {
PIString name;
PIVector<PIPair<PIString, PIString> > files; // name, path
};
PIVector<ParserSection> parse(const PIString & path);
PIVector<ParserSection> parseConf(PIFile & file, const PIString & dir);
#endif // PIRC_PARSER_H