ODIN
debug.h
1 /***************************************************************************
2  debug.h - description
3  -------------------
4  begin : Mon Oct 13 2008
5  copyright : (C) 2000-2021 by Thies Jochimsen
6  email : thies@jochimsen.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef RECODEBUG_H
19 #define RECODEBUG_H
20 
21 #include "step.h"
22 
23 class RecoDebug : public RecoStep {
24 
25  // implementing virtual functions of RecoStep
26  STD_string label() const {return "debug";}
27  STD_string description() const {return "Write messages to log";}
28  bool process(RecoData& rd, RecoController& controller);
29  RecoCoord input_coord() const {return RecoCoord::any();}
30  void modify_coord(RecoCoord& coord) const {}
31  RecoStep* allocate() const {return new RecoDebug;}
32  void init();
33 
34  LDRstring messageprefix;
35 
36 };
37 
38 
39 #endif
40 
debug: Write messages to log
Definition: debug.h:23
static RecoCoord any()
Definition: index.h:219