#include <DellRbu.h>
Inheritance diagram for RbuFactory:
Public Types | |
enum | { AutoDetectMode, UnitTestMode } |
enum | { defaultMode = AutoDetectMode } |
Public Methods | |
virtual | ~RbuFactory () throw () |
virtual IRbuHdr * | makeNew (std::string filename)=0 |
Create a new IRbuHdr object that the caller must delete. (NOT RECOMMENDED). | |
virtual void | setParameter (const std::string name, const std::string value)=0 |
virtual void | setParameter (const std::string name, const u32 value)=0 |
virtual void | setMode (const int mode)=0 |
virtual void | reset ()=0 |
virtual std::string | getParameterString (const std::string name) const=0 |
virtual u32 | getParameterNum (const std::string name) const=0 |
virtual int | getMode () const=0 |
Static Public Methods | |
RbuFactory * | getFactory () |
Create a factory object that you can use to create IRbuHdr objects. | |
Protected Methods | |
RbuFactory () | |
Use getFactory() to get a factory. |
The RbuFactory class is based on the Factory design pattern. The RbuFactory is the recommended method to create IRbuHdr objects.
The getSingleton() is the recommended method to call to create tables. You need not delete the pointer returned by this method, it will be delete by the factory when it is reset() or destructed.
Most users of the factory need call nothing more than getFactory() and then getSingleton() on the returned factory object.
Advanced users can call setParameter() to set up internal factory variables that control creation of tables.
Definition at line 72 of file DellRbu.h.
|
Definition at line 57 of file IFactory.h. |
|
Definition at line 58 of file IFactory.h. |
|
Definition at line 40 of file RbuHdr.cpp. |
|
Use getFactory() to get a factory.
Definition at line 41 of file RbuHdr.cpp. |
|
Create a factory object that you can use to create IRbuHdr objects. Factory entry point: This is the method to call to get a handle to the RbuFactory. The RbuFactory is the recommended method to create IRbuHdr objects. The getSingleton() is the recommended method to call to create tables. You need not delete the pointer returned by this method, it will be deleted by the factory when it is reset() or destructed.
Definition at line 43 of file RbuHdr.cpp. Referenced by testRbu::checkHdrInfo(), and testRbu::testRbuBadData(). |
|
Implemented in TFactory< factory::IFactory >. |
|
Implemented in TFactory< factory::IFactory >. |
|
Implemented in TFactory< factory::IFactory >. |
|
Create a new IRbuHdr object that the caller must delete. (NOT RECOMMENDED). The makeNew() method returns a pointer to a newly allocated IRbuHdr object. The caller is responsible for deleting this reference when it is finished with it. It is recommended that the caller store the pointer in an std::auto_ptr<IRbuHdr>. The getSingleton() method is preferred over this method.
|
|
Implemented in TFactory< factory::IFactory >. Referenced by testStandalone::testNonXml(). |
|
Implemented in TFactory< factory::IFactory >. |
|
Implemented in TFactory< factory::IFactory >. |
|
Implemented in TFactory< factory::IFactory >. Referenced by testPlatform::testConstructionOffset2(), and testStandalone::testMemoryBadFiles(). |