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 // $Id: MessageForParent.h,v 1.2 2011/10/25 13:57:58 chrjones Exp $
21 //
22 
23 // system include files
24 #include <stddef.h>
25 
26 // user include files
27 
28 // forward declarations
29 
30 namespace edm {
31  namespace multicore {
33  {
34  public:
36 
37  //virtual ~MessageForSource();
38 
39  // ---------- const member functions ---------------------
40 
41  // ---------- static member functions --------------------
42  static size_t sizeForBuffer() {
43  return sizeof(MessageForParent);
44  }
45 
46  public:
47  // ---------- member functions ---------------------------
48 
49 
50  //MessageForSource(const MessageForSource&); // allow default
51 
52  //const MessageForSource& operator=(const MessageForSource&); // allow default
53 
54  // ---------- member data --------------------------------
55  int m_dummy;
56 
57  };
58 
59  }
60 }
61 
62 #endif