You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kmymoney/kmymoney2/plugins/importinterface.h

65 lines
2.0 KiB

/***************************************************************************
importinterface.h
-------------------
begin : Mon Apr 14 2008
copyright : (C) 2008 Thomas Baumgart
email : ipwizard@users.sourceforge.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 IMPORTINTERFACE_H
#define IMPORTINTERFACE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// ----------------------------------------------------------------------------
// QT Includes
#include <tqobject.h>
#include <tqstring.h>
// ----------------------------------------------------------------------------
// KDE Includes
#include <tdefile.h>
#include <kurl.h>
class TDEPopupMenu;
// ----------------------------------------------------------------------------
// Project Includes
#include <kmymoney/export.h>
namespace KMyMoneyPlugin {
/**
* This abstract class represents the ImportInterface to
* add new importers to KMyMoney.
*/
class KMYMONEY_EXPORT ImportInterface : public TQObject
{
Q_OBJECT
public:
ImportInterface(TQObject* parent, const char* name = 0);
~ImportInterface() {}
virtual KURL selectFile(const TQString& title, const TQString& path, const TQString& mask, KFile::Mode mode) const = 0;
signals:
};
}; // namespace
#endif