// Typedefs
public:
/// Fallback constructor function prototype.
- typedef Fallback* Constructor(const string&, const string&, const Hash&);
+ //typedef Fallback* Constructor(const string&, const string&, const Hash&);
// Attributes.
public:
*
* @param name Name of the widget.
*/
- Fallback(const string&);
+ Fallback(void);
/**
* Constructor.
* @param name Name of the widget.
* @param attrs Widget attributes.
*/
- Fallback(const string&, const Hash&);
+ Fallback(const Hash&);
/**
* Constructor.
* @param attrs Widget attributes.
* @param content Content of the widget.
*/
- Fallback(const string&, const Hash&, Widget*);
+ Fallback(const Hash&, Widget*);
/**
* Constructor.
* @param name Name of the widget.
* @param content Content of the widget.
*/
- Fallback(const string&, Widget*);
+ //Fallback(Widget*);
/**
* Constructor.
* @param content Content of the widget.
* @param attrs Widget attributes.
*/
- Fallback(const string&, Widget*, const Hash&);
+ Fallback(Widget*, const Hash&);
/**
* Destructor.