[go: up one dir, main page]

Menu

[1b439f]: / rmol / FileMgr.hpp  Maximize  Restore  History

Download this file

24 lines (18 with data), 657 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __RMOL_FILEMGR_HPP
#define __RMOL_FILEMGR_HPP
// //////////////////////////////////////////////////////////////////////
// Import section
// //////////////////////////////////////////////////////////////////////
#include <string>
namespace RMOL {
class BucketHolder;
/** Class filling the BucketHolder structure (representing
a list of classes/buckets) from a given input file. */
class FileMgr {
public:
/** Read the input values from a CSV file. */
static void readAndProcessInputFile (const std::string& iInputFileName,
BucketHolder&);
};
}
#endif // __RMOL_FILEMGR_HPP