Go to the documentation of this file.00001 #ifndef FWCore_Framework_MessageForParent_h
00002 #define FWCore_Framework_MessageForParent_h
00003
00004
00005
00006
00007
00017
00018
00019
00020
00021
00022
00023
00024 #include <stddef.h>
00025
00026
00027
00028
00029
00030 namespace edm {
00031 namespace multicore {
00032 class MessageForParent
00033 {
00034 public:
00035 MessageForParent(): m_dummy(0) {}
00036
00037
00038
00039
00040
00041
00042 static size_t sizeForBuffer() {
00043 return sizeof(MessageForParent);
00044 }
00045
00046 public:
00047
00048
00049
00050
00051
00052
00053
00054
00055 int m_dummy;
00056
00057 };
00058
00059 }
00060 }
00061
00062 #endif