CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
lhef::StorageWrap Class Reference

#include <XMLUtils.h>

Public Member Functions

Storageoperator-> ()
 
const Storageoperator-> () const
 
 StorageWrap (std::unique_ptr< Storage > storage)
 
 ~StorageWrap ()
 

Private Attributes

std::unique_ptr< Storagestorage
 

Detailed Description

Definition at line 24 of file XMLUtils.h.

Constructor & Destructor Documentation

lhef::StorageWrap::StorageWrap ( std::unique_ptr< Storage storage)

Definition at line 25 of file XMLUtils.cc.

25  :
27 {
28 }
std::unique_ptr< Storage > storage
Definition: XMLUtils.h:33
def move(src, dest)
Definition: eostools.py:511
lhef::StorageWrap::~StorageWrap ( )

Definition at line 30 of file XMLUtils.cc.

References lhef::XMLDocument::XercesPlatform::instances, and storage.

31 {
32  storage->close();
33 }
std::unique_ptr< Storage > storage
Definition: XMLUtils.h:33

Member Function Documentation

Storage* lhef::StorageWrap::operator-> ( )
inline

Definition at line 29 of file XMLUtils.h.

29 { return storage.get(); }
std::unique_ptr< Storage > storage
Definition: XMLUtils.h:33
const Storage* lhef::StorageWrap::operator-> ( ) const
inline

Definition at line 30 of file XMLUtils.h.

30 { return storage.get(); }
std::unique_ptr< Storage > storage
Definition: XMLUtils.h:33

Member Data Documentation

std::unique_ptr<Storage> lhef::StorageWrap::storage
private

Definition at line 33 of file XMLUtils.h.

Referenced by ~StorageWrap().