2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 00:11:46 +01:00
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
#ifndef DIRECTORY_H
|
|
|
|
#define DIRECTORY_H
|
|
|
|
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
2010-03-03 01:33:31 +01:00
|
|
|
#include <QMetaType>
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
class QSqlQuery;
|
|
|
|
|
|
|
|
struct Directory {
|
2010-04-01 18:59:32 +02:00
|
|
|
Directory() : id(-1) {}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
bool operator==(const Directory& other) const {
|
2012-01-29 18:39:28 +01:00
|
|
|
return path == other.path && id == other.id;
|
|
|
|
}
|
|
|
|
|
2009-12-24 20:16:07 +01:00
|
|
|
QString path;
|
|
|
|
int id;
|
|
|
|
};
|
2012-01-29 18:39:28 +01:00
|
|
|
Q_DECLARE_METATYPE(Directory)
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
typedef QList<Directory> DirectoryList;
|
2012-01-29 18:39:28 +01:00
|
|
|
Q_DECLARE_METATYPE(DirectoryList)
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2010-04-01 18:59:32 +02:00
|
|
|
struct Subdirectory {
|
|
|
|
Subdirectory() : directory_id(-1), mtime(0) {}
|
|
|
|
|
|
|
|
int directory_id;
|
|
|
|
QString path;
|
|
|
|
uint mtime;
|
|
|
|
};
|
2012-01-29 18:39:28 +01:00
|
|
|
Q_DECLARE_METATYPE(Subdirectory)
|
2010-04-01 18:59:32 +02:00
|
|
|
|
|
|
|
typedef QList<Subdirectory> SubdirectoryList;
|
2012-01-29 18:39:28 +01:00
|
|
|
Q_DECLARE_METATYPE(SubdirectoryList)
|
2010-04-01 18:59:32 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // DIRECTORY_H
|