diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-03-23 11:59:03 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-03-23 11:59:03 +0900 |
| commit | c2f28aadde2e2e12594c4d0b8d334254dc76a712 (patch) | |
| tree | bbf33f8184e5906621b424f3b91ab0ca7b4b2772 /lib/compatibility/tdemdi/qextmdi/tdemdiiterator.h | |
| parent | e5595fbfda5ebe3973b90d7d56f5ee46561f948f (diff) | |
| download | tdewebdev-master.tar.gz tdewebdev-master.zip | |
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.h | 49 |
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_ |
