Changeset 17230
- Timestamp:
- 10/16/13 21:02:56 (11 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/MessageDim.cc
r16835 r17230 60 60 } 61 61 62 voidMessageDimTX::UpdateService(const tuple<Time,string,int> &data)62 bool MessageDimTX::UpdateService(const tuple<Time,string,int> &data) 63 63 { 64 64 setData(get<1>(data)); … … 68 68 if (rc==0 && fDebug) 69 69 Out() << " !! " << get<0>(data).GetAsStr() << " - Sending failed!" << endl; 70 71 return true; 70 72 } 71 73 -
trunk/FACT++/src/MessageDim.h
r16737 r17230 2 2 #define FACT_MessageDim 3 3 4 #include "queue.h"5 4 #include "MessageImp.h" 6 5 #include "DimDescriptionService.h" 7 6 //#include <dis.hxx> // DimService 7 8 #include "../externals/Queue.h" 8 9 9 10 class MessageDimTX : public DimDescribedService, public MessageImp … … 14 15 Queue<std::tuple<Time,std::string,int>> fMsgQueue; 15 16 16 voidUpdateService(const std::tuple<Time,std::string,int> &data);17 bool UpdateService(const std::tuple<Time,std::string,int> &data); 17 18 18 19 public:
Note:
See TracChangeset
for help on using the changeset viewer.