CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MessageForParent.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_MessageForParent_h
2 #define FWCore_Framework_MessageForParent_h
3 // -*- C++ -*-
4 //
5 // Package: Framework
6 // Class : MessageForParent
7 //
17 //
18 // Original Author: Brian Bockelman
19 // Created: Sat Oct 22 10:34:00 CEST 2011
20 //
21 
22 // system include files
23 #include <cstddef>
24 
25 // user include files
26 
27 // forward declarations
28 
29 namespace edm {
30  namespace multicore {
32  {
33  public:
35 
36  //virtual ~MessageForSource();
37 
38  // ---------- const member functions ---------------------
39 
40  // ---------- static member functions --------------------
41  static size_t sizeForBuffer() {
42  return sizeof(MessageForParent);
43  }
44 
45  public:
46  // ---------- member functions ---------------------------
47 
48 
49  //MessageForSource(const MessageForSource&); // allow default
50 
51  //const MessageForSource& operator=(const MessageForSource&); // allow default
52 
53  // ---------- member data --------------------------------
54  int m_dummy;
55 
56  };
57 
58  }
59 }
60 
61 #endif