The Gaudi Framework  v29r0 (ff2e7097)
IoComponentMgr::IoComponentEntry Struct Reference
Collaboration diagram for IoComponentMgr::IoComponentEntry:

Public Member Functions

 IoComponentEntry ()
 
 IoComponentEntry (const std::string &f, const std::string &p, const IIoComponentMgr::IoMode::Type &t)
 
 IoComponentEntry (const IoComponentEntry &rhs)
 
bool operator< (IoComponentEntry const &rhs) const
 

Public Attributes

std::string m_oldfname
 
std::string m_oldabspath
 
std::string m_newfname
 
IIoComponentMgr::IoMode::Type m_iomode
 

Friends

std::ostreamoperator<< (std::ostream &os, const IoComponentEntry &c)
 

Detailed Description

Definition at line 119 of file IoComponentMgr.h.

Constructor & Destructor Documentation

IoComponentMgr::IoComponentEntry::IoComponentEntry ( )
inline

Definition at line 125 of file IoComponentMgr.h.

126  : m_oldfname( "" )
127  , m_oldabspath( "" )
128  , m_newfname( "" )
129  , // VT. changes
131  {
132  }
std::string m_oldabspath
std::string m_oldfname
IIoComponentMgr::IoMode::Type m_iomode
std::string m_newfname
IoComponentMgr::IoComponentEntry::IoComponentEntry ( const std::string f,
const std::string p,
const IIoComponentMgr::IoMode::Type t 
)
inline

Definition at line 133 of file IoComponentMgr.h.

135  : m_oldfname( f ), m_oldabspath( p ), m_newfname( "" ), m_iomode( t )
136  {
137  } // VT. changes
std::string m_oldabspath
std::string m_oldfname
IIoComponentMgr::IoMode::Type m_iomode
std::string m_newfname
IoComponentMgr::IoComponentEntry::IoComponentEntry ( const IoComponentEntry rhs)
inline

Definition at line 138 of file IoComponentMgr.h.

139  : m_oldfname( rhs.m_oldfname )
140  , m_oldabspath( rhs.m_oldabspath )
141  , // VT. changes
142  m_newfname( rhs.m_newfname )
143  , m_iomode( rhs.m_iomode )
144  {
145  }
std::string m_oldabspath
std::string m_oldfname
IIoComponentMgr::IoMode::Type m_iomode
std::string m_newfname

Member Function Documentation

bool IoComponentMgr::IoComponentEntry::operator< ( IoComponentEntry const &  rhs) const
inline

Definition at line 146 of file IoComponentMgr.h.

147  {
148  if ( m_oldfname == rhs.m_oldfname ) {
149  return ( m_iomode < rhs.m_iomode );
150  } else {
151  return ( m_oldfname < rhs.m_oldfname );
152  }
153  }
std::string m_oldfname
IIoComponentMgr::IoMode::Type m_iomode

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream os,
const IoComponentEntry c 
)
friend

Definition at line 155 of file IoComponentMgr.h.

156  {
157  os << "old: \"" << c.m_oldfname << "\" absolute path: \"" << c.m_oldabspath << "\" new: \"" << c.m_newfname
158  << "\" m: " << ( ( c.m_iomode == IIoComponentMgr::IoMode::READ ) ? "R" : "W" );
159  return os;
160  }

Member Data Documentation

IIoComponentMgr::IoMode::Type IoComponentMgr::IoComponentEntry::m_iomode

Definition at line 123 of file IoComponentMgr.h.

std::string IoComponentMgr::IoComponentEntry::m_newfname

Definition at line 122 of file IoComponentMgr.h.

std::string IoComponentMgr::IoComponentEntry::m_oldabspath

Definition at line 121 of file IoComponentMgr.h.

std::string IoComponentMgr::IoComponentEntry::m_oldfname

Definition at line 120 of file IoComponentMgr.h.


The documentation for this struct was generated from the following file: