#include "TFile.h"#include "TObjString.h"#include <Registry/Registry.h>#include "RegistryValidate.h"#include "Blah.h"#include <iostream>#include <fstream>Go to the source code of this file.
Functions | |
| void | error_handler () |
| void | dump_keys (Registry &r) |
|
|
Definition at line 90 of file RegistryValidate.cxx. References Registry::GetType(), Registry::Key(), s(), and Registry::Size(). Referenced by RegistryValidate::DumpRegistry(), and RegistryValidate::RunAllTests(). 00091 {
00092 Registry::RegistryKey rk = r.Key();
00093 const char* s;
00094 cerr << "dumping "<<r.Size()<<" keys:\n";
00095 while ( (s=rk()) ) {
00096 cerr << " " << s << "'s type name is " << r.GetType(s).name() << endl;
00097 }
00098 }
|
|
|
Definition at line 36 of file RegistryValidate.cxx. Referenced by RegistryValidate::RunAllTests(). 00037 {
00038 cerr << "Oops, an error!!!\n\a";
00039 }
|
1.3.9.1