Name

struct _EConfigClass — Configuration management abstract class.

Synopsis

struct _EConfigClass {
  GObjectClass object_class;
  EDList factories;
  void (* set_target (EConfig *ep, EConfigTarget *t);
  void (* target_free (EConfig *ep, EConfigTarget *t);
};  

Members

object_class

Superclass.

factories

A list of factories registered on this type of configuration manager.

set_target

A virtual method used to set the target on the configuration manager. This is used by subclasses so they may hook into changes on the target to propery drive the manager.

target_free

A virtual method used to free the target in an implementation-defined way.

Description