|
Gaudi Framework, version v23r4 |
| Home | Generated: Mon Sep 17 2012 |
#include <PragmaOptions.h>

Public Member Functions | |
| PragmaOptions () | |
| bool | is_print () const |
| void | setIsPrint (bool is_print) |
| bool | is_print_options () const |
| void | setIsPrintOptions (bool is_print_options) |
| bool | is_print_tree () const |
| void | setIsPrintTree (bool is_print_tree) |
| const std::string & | dumpFile () const |
| void | setDumpFile (const std::string &dump_file) |
| bool | IsPrintOptions () |
| bool | IsPrintTree () |
| bool | HasDumpFile () |
Private Attributes | |
| bool | m_is_print |
| bool | m_is_print_options |
| bool | m_is_print_tree |
| std::string | m_dump_file |
Definition at line 24 of file PragmaOptions.h.
| Gaudi::Parsers::PragmaOptions::PragmaOptions | ( | ) | [inline] |
Definition at line 26 of file PragmaOptions.h.
: m_is_print(true), m_is_print_options(false), m_is_print_tree(false){}
| const std::string& Gaudi::Parsers::PragmaOptions::dumpFile | ( | ) | const [inline] |
Definition at line 40 of file PragmaOptions.h.
{ return m_dump_file;}
| bool Gaudi::Parsers::PragmaOptions::HasDumpFile | ( | ) | [inline] |
Definition at line 47 of file PragmaOptions.h.
{ return !m_dump_file.empty();}
| bool Gaudi::Parsers::PragmaOptions::is_print | ( | ) | const [inline] |
Definition at line 29 of file PragmaOptions.h.
{ return m_is_print;}
| bool Gaudi::Parsers::PragmaOptions::is_print_options | ( | ) | const [inline] |
Definition at line 32 of file PragmaOptions.h.
{ return m_is_print_options;}
| bool Gaudi::Parsers::PragmaOptions::is_print_tree | ( | ) | const [inline] |
Definition at line 36 of file PragmaOptions.h.
{ return m_is_print_tree;}
| bool Gaudi::Parsers::PragmaOptions::IsPrintOptions | ( | ) | [inline] |
Definition at line 45 of file PragmaOptions.h.
{ return is_print_options() && is_print();}
| bool Gaudi::Parsers::PragmaOptions::IsPrintTree | ( | ) | [inline] |
Definition at line 46 of file PragmaOptions.h.
{ return is_print_tree() && is_print();}
| void Gaudi::Parsers::PragmaOptions::setDumpFile | ( | const std::string & | dump_file ) | [inline] |
Definition at line 41 of file PragmaOptions.h.
{
m_dump_file = dump_file;
}
| void Gaudi::Parsers::PragmaOptions::setIsPrint | ( | bool | is_print ) | [inline] |
Definition at line 30 of file PragmaOptions.h.
{ m_is_print = is_print; }
| void Gaudi::Parsers::PragmaOptions::setIsPrintOptions | ( | bool | is_print_options ) | [inline] |
Definition at line 33 of file PragmaOptions.h.
| void Gaudi::Parsers::PragmaOptions::setIsPrintTree | ( | bool | is_print_tree ) | [inline] |
Definition at line 37 of file PragmaOptions.h.
{ m_is_print_tree = is_print_tree; }
std::string Gaudi::Parsers::PragmaOptions::m_dump_file [private] |
Definition at line 53 of file PragmaOptions.h.
bool Gaudi::Parsers::PragmaOptions::m_is_print [private] |
Definition at line 50 of file PragmaOptions.h.
bool Gaudi::Parsers::PragmaOptions::m_is_print_options [private] |
Definition at line 51 of file PragmaOptions.h.
bool Gaudi::Parsers::PragmaOptions::m_is_print_tree [private] |
Definition at line 52 of file PragmaOptions.h.