Confdump Agent
1.4.0
|
#include <Dumper.hpp>
Public Member Functions | |
Dumper () | |
virtual | ~Dumper () |
QStringList | listTables () |
Result | queryTable (QString table) |
QString | computerIdentifier () |
Private Member Functions | |
virtual QStringList | doListTables () |
virtual Result | doQueryTable (QString table)=0 |
virtual QString | doComputerIdentifier () |
Definition at line 28 of file Dumper.hpp.
Definition at line 23 of file Dumper.cpp.
Confdump::Dumper::~Dumper | ( | ) | [virtual] |
Definition at line 27 of file Dumper.cpp.
QString Confdump::Dumper::computerIdentifier | ( | ) |
Definition at line 41 of file Dumper.cpp.
References doComputerIdentifier().
QString Confdump::Dumper::doComputerIdentifier | ( | ) | [private, virtual] |
Default implementation : return the empty string.
Reimplemented in Confdump::System::LinuxDumper, and Confdump::System::WmiDumper.
Definition at line 51 of file Dumper.cpp.
Referenced by computerIdentifier().
QStringList Confdump::Dumper::doListTables | ( | ) | [private, virtual] |
Default implementation : return an empty list.
Reimplemented in Confdump::System::LinuxDumper, Confdump::System::WmiDumper, and Confdump::System::Win32Dumper.
Definition at line 46 of file Dumper.cpp.
Referenced by listTables().
virtual Result Confdump::Dumper::doQueryTable | ( | QString | table | ) | [private, pure virtual] |
Implemented in Confdump::System::LinuxDumper, Confdump::System::WmiDumper, and Confdump::System::Win32Dumper.
Referenced by queryTable().
QStringList Confdump::Dumper::listTables | ( | ) |
Definition at line 31 of file Dumper.cpp.
References doListTables().
Result Confdump::Dumper::queryTable | ( | QString | table | ) |
Definition at line 36 of file Dumper.cpp.
References doQueryTable().