initial implementation
This commit is contained in:
commit
8454b48956
32 changed files with 2781 additions and 0 deletions
25
KalmanFilterInputToConsole.cpp
Normal file
25
KalmanFilterInputToConsole.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/* @file KalmanFilterInputToConsole.cpp */
|
||||
|
||||
#include "KalmanFilterInputToConsole.hpp"
|
||||
#include "indentlog/print/tag.hpp"
|
||||
|
||||
namespace xo {
|
||||
using xo::xtag;
|
||||
|
||||
namespace kalman {
|
||||
ref::rp<KalmanFilterInputToConsole>
|
||||
KalmanFilterInputToConsole::make() {
|
||||
return new KalmanFilterInputToConsole();
|
||||
} /*make*/
|
||||
|
||||
void
|
||||
KalmanFilterInputToConsole::display(std::ostream & os) const
|
||||
{
|
||||
os << "<KalmanFilterInputToConsole"
|
||||
<< xtag("this", (void*)this)
|
||||
<< ">";
|
||||
} /*display*/
|
||||
} /*namespace kalman*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end KalmanFilterInputToConsole.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue