kfile_vcf.h
00001 /* This file is part of the KDE project 00002 * Copyright (C) 2002 Shane Wright <me@shanewright.co.uk> 00003 * 00004 * This program is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU General Public 00006 * License as published by the Free Software Foundation version 2. 00007 * 00008 * This program is distributed in the hope that it will be useful, 00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 * General Public License for more details. 00012 * 00013 * You should have received a copy of the GNU General Public License 00014 * along with this program; see the file COPYING. If not, write to 00015 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00016 * Boston, MA 02111-1307, USA. 00017 * 00018 */ 00019 00020 #ifndef __KFILE_VCF_H__ 00021 #define __KFILE_VCF_H__ 00022 00023 #include <kfilemetainfo.h> 00024 00025 class QStringList; 00026 00027 class KVcfPlugin: public KFilePlugin 00028 { 00029 Q_OBJECT 00030 00031 public: 00032 KVcfPlugin( QObject *parent, const char *name, const QStringList& args ); 00033 00034 virtual bool readInfo( KFileMetaInfo& info, uint what); 00035 }; 00036 00037 #endif