summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/autolayout/diagram_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/autolayout/diagram_interface.h')
-rw-r--r--umbrello/umbrello/autolayout/diagram_interface.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/umbrello/umbrello/autolayout/diagram_interface.h b/umbrello/umbrello/autolayout/diagram_interface.h
new file mode 100644
index 00000000..caee5752
--- /dev/null
+++ b/umbrello/umbrello/autolayout/diagram_interface.h
@@ -0,0 +1,31 @@
+/*
+ * copyright (C) 2005
+ * Umbrello UML Modeller Authors <uml-devel @uml.sf.net>
+ */
+
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+#ifndef __DIAGRAM_INTERFACE_H
+#define __DIAGRAM_INTERFACE_H
+
+class DiagramInterface
+{
+public:
+ DiagramInterface() {}
+ virtual ~DiagramInterface() {}
+
+
+private:
+ DiagramInterface( const DiagramInterface& source );
+ void operator = ( const DiagramInterface& source );
+};
+
+
+#endif // __DIAGRAM_INTERFACE_H