EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PgPostBankWrapperManager.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PgPostBankWrapperManager.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef PDBCALPG_PGPOSTBANKWRAPPERMANAGER_H
4 #define PDBCALPG_PGPOSTBANKWRAPPERMANAGER_H
5 
6 #include <vector>
7 
9 
11 {
12  public:
14 
15  void clear();
16 
17  bool commit();
18 
19  void print() const;
20 
21  bool registerWrapper(PgPostBankWrapper* wrapper);
22 
23  bool unregisterWrapper(PgPostBankWrapper* wrapper);
24 
25  private:
27 
28  typedef std::vector<PgPostBankWrapper*> WVECTOR;
29 
31 };
32 
33 #endif