-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathReaderTool.h
More file actions
36 lines (28 loc) · 1.06 KB
/
ReaderTool.h
File metadata and controls
36 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef ReaderTool_H
#define ReaderTool_H
#include <iostream>
#include <string>
#include "DataModel.h"
#include "Tool.h"
/**
* \class ReaderTool
*
* This is a blank template for a Tool used by the script to generate a new custom tool. Please fill out the
* description and author information.
*
* $Author: B.Richards $
* $Date: 2019/05/28 10:44:00 $
*/
class ReaderTool : public Tool {
public:
ReaderTool(); ///< Simple constructor
bool Initialise(std::string configfile,
DataModel& data); ///< Initialise Function for setting up Tool resources. @param
///< configfile The path and name of the dynamic configuration file
///< to read in. @param data A reference to the transient data
///< class used to pass information between Tools.
bool Execute(); ///< Execute function used to perform Tool purpose.
bool Finalise(); ///< Finalise funciton used to clean up resources.
private:
};
#endif