summaryrefslogtreecommitdiffstats
path: root/ProjectParser.h
blob: 9c05f56a9a55818ed76b2f4ff93562d65e6a899b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef PROJECTPARSER_H_
#define PROJECTPARSER_H_

#include <string>

class Project;

void parse(Project& theProject, const std::string& Filename, bool DiscoveryMode);

#endif