00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00013
00014 #ifndef __FNCOUT_H__
00015 #define __FNCOUT_H__
00016
00017 #include "jic/log/trazas.hpp"
00018 #include "jic/task/CFnConsumer.hpp"
00019
00020 namespace TASK
00021 {
00022 namespace CONSUMIDORES
00023 {
00024
00025
00026
00027
00028
00029
00030 template<class Mensaje>
00031 class FnASalidaStandard : public CFnConsumer<Mensaje>
00032 {
00033 public:
00034 void operator() (CMessageBlock<Mensaje> *data);
00035 };
00036
00037 #ifdef ACE_TEMPLATES_REQUIRE_SOURCE
00038 #include "fncout.cpp"
00039 #endif
00040
00041 }
00042 }
00043
00044 #endif
00045
00046