Horus Doc || C++ Reference || Class Overview   Pixels   Images   Detector   Geometry   Registry || Doxygen's quick Index  

HxRegistryImporter Class Reference

Class for importing stuff into the HxRegistry at program startup via declaration of static variables. More...

#include <HxRegistryImporter.h>

List of all members.

Public Methods

 HxRegistryImporter (HxString fileName)
 Constructor. More...

 HxRegistryImporter (const char *argv[])
 Constructor. More...

 HxRegistryImporter (HxRegistry &, HxString fileName)
 Constructor. More...

 HxRegistryImporter (HxRegistry &, const char *argv[])
 Constructor. More...


Detailed Description

Class for importing stuff into the HxRegistry at program startup via declaration of static variables.


Constructor & Destructor Documentation

HxRegistryImporter::HxRegistryImporter HxString    fileName [inline]
 

Constructor.

00035 {
00036     HxRegistry::instance().import(fileName);
00037 }

HxRegistryImporter::HxRegistryImporter const char *    argv[] [inline]
 

Constructor.

00041 {
00042     HxRegistry::instance().import(argv);
00043 }

HxRegistryImporter::HxRegistryImporter HxRegistry   registry,
HxString    fileName
[inline]
 

Constructor.

00047 {
00048     registry.import(fileName);
00049 }

HxRegistryImporter::HxRegistryImporter HxRegistry   registry,
const char *    argv[]
[inline]
 

Constructor.

00053 {
00054     registry.import(argv);
00055 }


The documentation for this class was generated from the following file:
Generated on Tue Feb 3 14:19:07 2004 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001