00001 #ifndef _PRINT_INTERNALS_H
00002 #define _PRINT_INTERNALS_H
00003
00004 #include "inspectable.h"
00005 #include "types.h"
00006
00007
00008
00009
00010
00011 void printInternalParameterNames(FILE* f,
00012 int sensornumber, int motornumber,
00013 std::list<const Inspectable*> inspectables);
00014
00015
00016 void printInspectables(FILE* f, std::list<const Inspectable*> inspectables);
00017
00018 void printInspectableNames(FILE* f, std::list<const Inspectable*> inspectables);
00019
00020
00021
00022
00023 void printInternalParameters(FILE* f, double time,
00024 const sensor* x, int sensornumber,
00025 const motor* y, int motornumber,
00026 std::list<const Inspectable*> inspectables);
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 void printNetworkDescription(FILE* f, const std::string& name, const Inspectable* inspectable);
00049
00050
00051 #endif