Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > 21280410b6ea906d791d7a12afae2579 > files > 1678

libace5-doc-5.4-2mdk.i586.rpm

/* -*- C++ -*- */
//=============================================================================
/**
 *  @file    Widget_Part_Factory.h
 *
 *  Widget_Part_Factory.h,v 1.1 2001/08/29 12:02:08 schmidt Exp
 *
 *  @author Christopher Kohlhoff <chris@kohlhoff.com>
 */
//=============================================================================

#ifndef WIDGET_PART_FACTORY_H
#define WIDGET_PART_FACTORY_H

#include "Widget_Part.h"
#include "Widget.h"

/**
 * @class Widget_Part_Factory
 *
 * @brief Used to create Widget_Part instances.
 */
class Widget_Part_Factory
{
public:
  /// Create an instance of a widget part. Ownership of the newly created
  /// object is transferred to the caller.
  static Widget_Part *create_widget_part (Widget *owner, const char *name, int size);
};

#endif /* WIDGET_PART_FACTORY_H */