Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:08

0001 #ifndef FWCore_SharedMemory_BufferInfo_h
0002 #define FWCore_SharedMemory_BufferInfo_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWCore/SharedMemory
0006 // Class  :     BufferInfo
0007 //
0008 /**\class BufferInfo BufferInfo.h " FWCore/SharedMemory/interface/BufferInfo.h"
0009 
0010  Description: Information needed to manage the buffer
0011 
0012  Usage:
0013     This is an internal detail of the system.
0014 */
0015 //
0016 // Original Author:  Chris Jones
0017 //         Created:  21/01/2020
0018 //
0019 
0020 // system include files
0021 
0022 // user include files
0023 
0024 // forward declarations
0025 
0026 namespace edm::shared_memory {
0027   struct BufferInfo {
0028     int identifier_;
0029     char index_;
0030   };
0031 }  // namespace edm::shared_memory
0032 
0033 #endif