summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/docintf.h
diff options
context:
space:
mode:
Diffstat (limited to 'addon/doxywizard/docintf.h')
-rw-r--r--addon/doxywizard/docintf.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/addon/doxywizard/docintf.h b/addon/doxywizard/docintf.h
new file mode 100644
index 0000000..6c0ff26
--- /dev/null
+++ b/addon/doxywizard/docintf.h
@@ -0,0 +1,12 @@
+#ifndef DOCINTF_H
+#define DOCINTF_H
+
+class DocIntf
+{
+ public:
+ virtual ~DocIntf() {}
+ virtual void setHeader(const char *header) = 0;
+ virtual void add(const char *name,const char *docs) = 0;
+};
+
+#endif