root/bdm/stat/loggers_ui.h @ 263

Revision 263, 0.6 kB (checked in by smidl, 15 years ago)

UIArxDS test

Line 
1/*!
2  \file
3  \brief UI builders for Loggers
4  \author Vaclav Smidl.
5
6  -----------------------------------
7  BDM++ - C++ library for Bayesian Decision Making under Uncertainty
8
9  Using IT++ for numerical operations
10  -----------------------------------
11*/
12
13#ifndef LGR_UI_H
14#define LGR_UI_H
15
16#include "loggers.h"
17#include "uibuilder.h"
18
19using namespace bdm;
20
21class UIdirfilelog : public UIbuilder {
22        public:
23        UIdirfilelog():UIbuilder("dirfilelog"){};
24        bdmroot* build(Setting &S) const{
25                return new dirfilelog(S["dirname"],S["maxlen"]);
26        };
27};
28
29UIREGISTER(UIdirfilelog);
30#endif // LGR_H
Note: See TracBrowser for help on using the browser.