Go to the documentation of this file.00001 #ifndef FWCore_Framework_MessageForSource_h
00002 #define FWCore_Framework_MessageForSource_h
00003
00004
00005
00006
00007
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 namespace edm {
00034 namespace multicore {
00035 class MessageForSource
00036 {
00037
00038 public:
00039 MessageForSource():
00040 startIndex(0),
00041 nIndices(0) {}
00042
00043
00044
00045
00046
00047
00048 static size_t sizeForBuffer() {
00049 return sizeof(MessageForSource);
00050 }
00051
00052
00053
00054 public:
00055
00056
00057
00058
00059
00060 unsigned long startIndex;
00061 unsigned long nIndices;
00062
00063 };
00064 }
00065 }
00066
00067 #endif