summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/umlpackagelist.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/umlpackagelist.h')
-rw-r--r--umbrello/umbrello/umlpackagelist.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/umbrello/umbrello/umlpackagelist.h b/umbrello/umbrello/umlpackagelist.h
new file mode 100644
index 00000000..d74e8c33
--- /dev/null
+++ b/umbrello/umbrello/umlpackagelist.h
@@ -0,0 +1,22 @@
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ * copyright (C) 2003-2007 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+#ifndef UMLPACKAGELIST_H
+#define UMLPACKAGELIST_H
+
+#include <qptrlist.h>
+
+class UMLPackage;
+
+typedef QPtrList<UMLPackage> UMLPackageList;
+typedef QPtrListIterator<UMLPackage> UMLPackageListIt;
+
+#endif