From c3f8ee64e905cdb103b5bfa07525fb4e85c31120 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 24 Jul 2013 11:49:27 -0500 Subject: Initial import of kasablanca 0.4.0.2 --- src/kbfile.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 src/kbfile.h (limited to 'src/kbfile.h') diff --git a/src/kbfile.h b/src/kbfile.h new file mode 100755 index 0000000..2c53ab3 --- /dev/null +++ b/src/kbfile.h @@ -0,0 +1,38 @@ +/*************************************************************************** + kbfile.h - description + ------------------- + begin : Die Sep 23 2003 + copyright : (C) 2003 by mkulke + email : sikor_sxe@radicalapproach.de + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 FILEITEM_H +#define FILEITEM_H + +#include +#include "kbitem.h" + +class KbFileInfo; + +/** + *@author mkulke + */ + +class KbFile : public KbItem { +public: + KbFile(KbFileInfo kfi, QListView * parent, QListViewItem * after); + KbFile(QListView * parent, QListViewItem * after, QString file, QString path, QString date, off64_t size, unsigned int date_int); + ~KbFile(); + int rtti() const; +}; + +#endif -- cgit v1.2.1