forked from kvtsang/Supera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ParamsImage2D.h
52 lines (37 loc) · 838 Bytes
/
ParamsImage2D.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* \file ParamsImage2D.h
*
* \ingroup Package_Name
*
* \brief Class def header for a class ParamsImage2D
*
* @author kazuhiro
*/
/** \addtogroup Package_Name
@{*/
#ifndef __SUPERAPARAMSIMAGE2D_H__
#define __SUPERAPARAMSIMAGE2D_H__
#include "FMWKInterface.h"
namespace supera {
/**
\class ParamsImage2D
User defined class ParamsImage2D ... these comments are used to generate
doxygen documentation!
*/
class ParamsImage2D {
public:
/// Default constructor
ParamsImage2D() {}
/// Default destructor
~ParamsImage2D() {}
void configure(const supera::Config_t&);
//
// Getter
//
const std::string& OutImageLabel() const { return _out_image_producer; }
private:
std::string _out_image_producer;
};
}
#endif
/** @} */ // end of doxygen group