|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
This class is the FileIncident. More...
#include <FileIncident.h>


Public Member Functions | |
| FileIncident (const std::string &source, const std::string &type, const std::string &fileName, bool isPayload=false) | |
| standard constructor | |
| FileIncident (const std::string &source, const std::string &type, const std::string &fileName, const std::string &fileGuid, bool isPayload=false) | |
| FileIncident (const FileIncident &rhs) | |
| virtual | ~FileIncident () |
| const FileIncident & | operator= (const FileIncident &rhs) |
| Overloaded Assignment Operator. | |
| const std::string & | fileName () const |
| const std::string & | fileGuid () const |
| bool | isPayload () const |
Private Attributes | |
| std::string | m_fileName |
| std::string | m_fileGuid |
| bool | m_isPayload |
This class is the FileIncident.
Definition at line 18 of file FileIncident.h.
| FileIncident::FileIncident | ( | const std::string & | source, |
| const std::string & | type, | ||
| const std::string & | fileName, | ||
| bool | isPayload = false |
||
| ) | [inline] |
standard constructor
Definition at line 45 of file FileIncident.h.
: Incident(source, type), m_fileName(fileName), m_fileGuid(""), m_isPayload(isPayload) {}
| FileIncident::FileIncident | ( | const std::string & | source, |
| const std::string & | type, | ||
| const std::string & | fileName, | ||
| const std::string & | fileGuid, | ||
| bool | isPayload = false |
||
| ) | [inline] |
Definition at line 49 of file FileIncident.h.
: Incident(source, type), m_fileName(fileName), m_fileGuid(fileGuid), m_isPayload(isPayload) {}
| FileIncident::FileIncident | ( | const FileIncident & | rhs ) | [inline] |
Definition at line 54 of file FileIncident.h.
: Incident(rhs), m_fileName(rhs.m_fileName), m_fileGuid(rhs.m_fileGuid), m_isPayload(rhs.m_isPayload) {}
| FileIncident::~FileIncident | ( | ) | [inline, virtual] |
Definition at line 58 of file FileIncident.h.
{}
| const std::string & FileIncident::fileGuid | ( | ) | const [inline] |
Definition at line 71 of file FileIncident.h.
{ return(m_fileGuid); }
| const std::string & FileIncident::fileName | ( | ) | const [inline] |
Definition at line 70 of file FileIncident.h.
{ return(m_fileName); }
| bool FileIncident::isPayload | ( | ) | const [inline] |
Definition at line 72 of file FileIncident.h.
{ return(m_isPayload); }
| const FileIncident & FileIncident::operator= | ( | const FileIncident & | rhs ) | [inline] |
Overloaded Assignment Operator.
Definition at line 60 of file FileIncident.h.
{
if (this != &rhs) {
Incident::operator=(rhs);
m_fileName = rhs.m_fileName;
m_fileGuid = rhs.m_fileGuid;
m_isPayload = rhs.m_isPayload;
}
return(rhs);
}
std::string FileIncident::m_fileGuid [private] |
Definition at line 41 of file FileIncident.h.
std::string FileIncident::m_fileName [private] |
Definition at line 40 of file FileIncident.h.
bool FileIncident::m_isPayload [private] |
Definition at line 42 of file FileIncident.h.