EPANET  3.0
EPANET Development Project
curveparser.h
Go to the documentation of this file.
1 /* EPANET 3
2  *
3  * Copyright (c) 2016 Open Water Analytics
4  * Licensed under the terms of the MIT License (see the LICENSE file for details).
5  *
6  */
7 
10 
11 #ifndef CURVEPARSER_H_
12 #define CURVEPARSER_H_
13 
14 #include <string>
15 #include <vector>
16 
17 class Curve;
18 
22 
24 {
25 public:
26  CurveParser() {}
27  ~CurveParser() {}
28  void parseCurveData(Curve* curve, std::vector<std::string>& tokens);
29 };
30 
31 #endif
The CurveParser class is used to parse a line of input data for curve data (pairs of x...
Definition: curveparser.h:23
An ordered collection of x,y data pairs.
Definition: curve.h:30