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
00013
00014
00015
00016
00017
00018
00019
00020
00021