summaryrefslogtreecommitdiff
path: root/dldialog/src/dld_form.h
diff options
context:
space:
mode:
Diffstat (limited to 'dldialog/src/dld_form.h')
-rw-r--r--dldialog/src/dld_form.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/dldialog/src/dld_form.h b/dldialog/src/dld_form.h
new file mode 100644
index 0000000..b025596
--- /dev/null
+++ b/dldialog/src/dld_form.h
@@ -0,0 +1,40 @@
+/******************************************************************************
+**
+** $Id: dld_form.h,v 1.1 1999/04/18 20:59:34 harald Exp $
+**
+** This program is free software; you can redistribute it and/or
+** modify it under the terms of the GNU General Public License
+** as published by the Free Software Foundation; either version
+** 2 of the License, or (at your option) any later version.
+**
+** by Harald Hoyer (Harald.Hoyer@hot.spotline.de)
+** for delix Computer GmbH (http://www.delix.de)
+**
+******************************************************************************/
+
+
+/******************************************************************************
+ *
+ * IMPORTANT:
+ * ----------
+ *
+ * If you modify anything of this you have to modify
+ * GUI_VERSION_INFO in configure.in following the guidelines in
+ * README.developers
+ *
+ *****************************************************************************/
+
+
+#ifndef DLD_GUI_FORM_H
+#define DLD_GUI_FORM_H
+
+#include "dld_container.h"
+
+/**
+ * Abstract Interface for a form widget.
+ * @short Abstract Interface
+ * @author Harald Hoyer <Harald.Hoyer@hot.spotline.de>
+ */
+class DLD_Form : public virtual DLD_Obj, public virtual DLD_Container{
+};
+#endif