summaryrefslogtreecommitdiffstats
path: root/lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-23 11:59:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-23 11:59:03 +0900
commitc2f28aadde2e2e12594c4d0b8d334254dc76a712 (patch)
treebbf33f8184e5906621b424f3b91ab0ca7b4b2772 /lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h
parente5595fbfda5ebe3973b90d7d56f5ee46561f948f (diff)
downloadtdewebdev-master.tar.gz
tdewebdev-master.zip
Remove use of TDE_VERSIONHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h')
-rw-r--r--lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h b/lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h
deleted file mode 100644
index 9bdb5234..00000000
--- a/lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h
+++ /dev/null
@@ -1,49 +0,0 @@
-//----------------------------------------------------------------------------
-// filename : tdemdiiterator.h
-//----------------------------------------------------------------------------
-// Project : KDE MDI extension
-//
-// begin : 02/2000 by Massimo Morin
-// changes : 02/2000 by Falk Brettschneider to create an
-// - 06/2000 stand-alone TQt extension set of
-// classes and a TQt-based library
-// 2000-2003 maintained by the KDevelop project
-//
-// copyright : (C) 1999-2003 by Massimo Morin (mmorin@schedsys.com)
-// and
-// Falk Brettschneider
-// email : falkbr@kdevelop.org (Falk Brettschneider)
-//----------------------------------------------------------------------------
-//
-//----------------------------------------------------------------------------
-//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU Library General Public License as
-// published by the Free Software Foundation; either version 2 of the
-// License, or (at your option) any later version.
-//
-//----------------------------------------------------------------------------
-
-#ifndef _TDEMDIITERATOR_H_
-#define _TDEMDIITERATOR_H_
-
-
-template <class Item>
-class KMdiIterator
-{
-public:
- virtual ~KMdiIterator() {}
-
- virtual void first() = 0;
- virtual void last() = 0;
- virtual void next() = 0;
- virtual void prev() = 0;
- virtual bool isDone() const = 0;
- virtual Item currentItem() const = 0;
-
-protected:
- KMdiIterator() {}
-}
-;
-
-#endif // _TDEMDIITERATOR_H_