ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/DataFormats/interface/BasePartFwd.h
Revision: 1.1
Committed: Tue Jul 29 22:56:37 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Log Message:
Added BasePart edm reference typedefs

File Contents

# User Rev Content
1 bendavid 1.1 //--------------------------------------------------------------------------------------------------
2     // $Id: BasePartFwd.h,v 1.1 2008/07/29 13:16:22 loizides Exp $
3     //
4     // BasePartFwd
5     //
6     // Edm reference typedefs for BasePart
7     //
8     // Author List: J.Bendavid
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef MITEDM_BASEPARTFWD_H
12     #define MITEDM_BASEPARTFWD_H
13    
14     #include <vector>
15     #include "DataFormats/Common/interface/RefToBase.h"
16    
17     namespace mitedm {
18     class BasePart;
19     typedef edm::RefToBase<mitedm::BasePart> BasePartBaseRef;
20     typedef edm::RefToBaseVector<mitedm::BasePart> BasePartBaseRefVector;
21    
22     }
23     #endif