Go to the documentation of this file.00001 #include "Consumer.hpp"
00002 #include <fstream>
00003
00004 using namespace cross_consumer;
00005
00006 Consumer::Consumer(std::string const& name, TaskCore::TaskState initial_state)
00007 : ConsumerBase(name, initial_state)
00008 {
00009 io = new std::ofstream("cross_dependencies.txt");
00010 }
00011
00012 Consumer::Consumer(std::string const& name, RTT::ExecutionEngine* engine, TaskCore::TaskState initial_state)
00013 : ConsumerBase(name, engine, initial_state)
00014 {
00015 io = new std::ofstream("cross_dependencies.txt");
00016 }
00017
00019
00020
00021
00022
00023
00024
00025
00026
00027