CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/FWCore/Framework/src/MessageForParent.h

Go to the documentation of this file.
00001 #ifndef FWCore_Framework_MessageForParent_h
00002 #define FWCore_Framework_MessageForParent_h
00003 // -*- C++ -*-
00004 //
00005 // Package:     Framework
00006 // Class  :     MessageForParent
00007 // 
00017 //
00018 // Original Author:  Brian Bockelman
00019 //         Created:  Sat Oct 22 10:34:00 CEST 2011
00020 // $Id: MessageForParent.h,v 1.2 2011/10/25 13:57:58 chrjones Exp $
00021 //
00022 
00023 // system include files
00024 #include <stddef.h>
00025 
00026 // user include files
00027 
00028 // forward declarations
00029 
00030 namespace edm {
00031    namespace multicore {
00032       class MessageForParent
00033       {
00034       public:
00035          MessageForParent(): m_dummy(0) {}
00036          
00037          //virtual ~MessageForSource();
00038          
00039          // ---------- const member functions ---------------------
00040          
00041          // ---------- static member functions --------------------
00042          static size_t sizeForBuffer() {
00043            return sizeof(MessageForParent);
00044          }
00045 
00046       public:
00047          // ---------- member functions ---------------------------
00048          
00049 
00050          //MessageForSource(const MessageForSource&); // allow default
00051          
00052          //const MessageForSource& operator=(const MessageForSource&); // allow default
00053          
00054          // ---------- member data --------------------------------
00055          int m_dummy;
00056 
00057       };
00058 
00059    }
00060 }
00061 
00062 #endif