1 #ifndef COEFFICIENT_FILE_PARSER_H
2 #define COEFFICIENT_FILE_PARSER_H
3 
4 /**
5 @file	CoefficientFileParser.h
6 @author	Lime Microsystems
7 @brief	Just group parser functions into the same namespace.
8 */
9 
10 namespace Parser
11 {
12 	bool IsBlank(char);
13 	bool IsDigit(char);
14 	int getValue(FILE *, float *);
15 	int getcoeffs(const char *, float *, int);
16 	int getcoeffs2(const char *, float *, float *, int);
17 	void saveToFile(const char *, const float *, int);
18 }
19 
20 #endif // COEFFICIENT_FILE_PARSER_H
21