diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
commit | 0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch) | |
tree | 8578dcddfce4191f3f7a142a37769df7add48475 /k9author/k9importfiles.h | |
download | k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip |
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'k9author/k9importfiles.h')
-rw-r--r-- | k9author/k9importfiles.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/k9author/k9importfiles.h b/k9author/k9importfiles.h new file mode 100644 index 0000000..136c131 --- /dev/null +++ b/k9author/k9importfiles.h @@ -0,0 +1,42 @@ +// +// C++ Interface: k9importfiles +// +// Description: +// +// +// Author: Jean-Michel PETIT <[email protected]>, (C) 2007 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#ifndef K9IMPORTFILES_H +#define K9IMPORTFILES_H + +#include "k9common.h" + +#include <qobject.h> +#include <kmdidefines.h> +#include <kmdichildarea.h> +#include <kmdimainfrm.h> + +/** + @author Jean-Michel PETIT <[email protected]> +*/ + +class k9Import; +class k9NewTitle; +class k9ImportFiles : public KMdiMainFrm +{ +Q_OBJECT +public: + k9ImportFiles(QWidget *parent = 0, const char *name = 0); + + ~k9ImportFiles(); +private: + k9Import *m_k9Import; + KMdiChildView *m_k9ImportView; + k9NewTitle *m_k9NewTitle; + KMdiChildView *m_k9NewTitleView; +}; + +#endif |