Go to the documentation of this file.00001
00007 #include "PathPlanner.h"
00008
00009
00010
00011 static const char* path_spec[] =
00012 {
00013 "implementation_id", "Path",
00014 "type_name", "Path",
00015 "description", "Path Planner Component",
00016 "version", "0.1",
00017 "vendor", "S-cubed, Inc.",
00018 "category", "Generic",
00019 "activity_type", "SPORADIC",
00020 "kind", "DataFlowComponent",
00021 "max_instance", "10",
00022 "language", "C++",
00023 "lang_type", "compile",
00024
00025 "conf.default.NameServer", "localhost",
00026 ""
00027 };
00028
00029
00030 Path::Path(RTC::Manager* manager)
00031
00032 : RTC::DataFlowComponentBase(manager),
00033 m_PathPort("Path")
00034
00035
00036 {
00037
00038
00039
00040
00041
00042
00043
00044 m_PathPort.registerProvider("Path", "PathPlanner", m_Path);
00045
00046
00047
00048
00049 registerPort(m_PathPort);
00050
00051
00052
00053 }
00054
00055 Path::~Path()
00056 {
00057 }
00058
00059
00060 RTC::ReturnCode_t Path::onInitialize()
00061 {
00062
00063
00064 bindParameter("NameServer", m_NameServer, "localhost");
00065 m_Path.setNameServer(m_NameServer);
00066
00067
00068 return RTC::RTC_OK;
00069 }
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140 extern "C"
00141 {
00142
00143 void PathInit(RTC::Manager* manager)
00144 {
00145 RTC::Properties profile(path_spec);
00146 manager->registerFactory(profile,
00147 RTC::Create<Path>,
00148 RTC::Delete<Path>);
00149 }
00150
00151 };
00152
00153
00154