The Gaudi Framework  v33r0 (d5ea422b)
DataHandleHolderVisitor.h
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
3 * *
4 * This software is distributed under the terms of the Apache version 2 licence, *
5 * copied verbatim in the file "LICENSE". *
6 * *
7 * In applying this licence, CERN does not waive the privileges and immunities *
8 * granted to it by virtue of its status as an Intergovernmental Organization *
9 * or submit itself to any jurisdiction. *
10 \***********************************************************************************/
11 #ifndef GAUDIKERNEL_DATAHANDLEHOLDERVISTOR
12 #define GAUDIKERNEL_DATAHANDLEHOLDERVISTOR 1
13 
14 #include "GaudiKernel/DataObjID.h"
16 #include <set>
17 
19 public:
21 
22  const DataObjIDColl& ignoredInpKeys() const { return m_ign_i; }
23  const DataObjIDColl& ignoredOutKeys() const { return m_ign_o; }
24 
25  void visit( const IDataHandleHolder* visitee ) override;
26 
27 private:
30 };
31 
32 #endif
const DataObjIDColl & ignoredOutKeys() const
void visit(const IDataHandleHolder *visitee) override
DataObjIDColl m_ign_o
const DataObjIDColl & ignoredInpKeys() const
DataObjIDColl m_ign_i
DataObjIDColl & m_ido
DataObjIDColl & m_odo
DHHVisitor(DataObjIDColl &ido, DataObjIDColl &odo)