2012-08-15 21:32:34 +02:00
|
|
|
/*
|
2013-07-30 20:10:24 +02:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2012-08-15 21:32:34 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_MEMORY_DATABASE_PLUGIN_HXX
|
|
|
|
#define MPD_MEMORY_DATABASE_PLUGIN_HXX
|
|
|
|
|
|
|
|
#include "DatabaseVisitor.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/TagType.h"
|
2012-08-15 21:32:34 +02:00
|
|
|
#include "gcc.h"
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
class Error;
|
2012-08-15 21:32:34 +02:00
|
|
|
class Database;
|
|
|
|
struct DatabaseSelection;
|
2012-08-15 22:20:28 +02:00
|
|
|
struct DatabaseStats;
|
2012-08-15 21:32:34 +02:00
|
|
|
|
|
|
|
bool
|
|
|
|
VisitUniqueTags(const Database &db, const DatabaseSelection &selection,
|
|
|
|
enum tag_type tag_type,
|
|
|
|
VisitString visit_string,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error);
|
2012-08-15 21:32:34 +02:00
|
|
|
|
2012-08-15 22:20:28 +02:00
|
|
|
bool
|
|
|
|
GetStats(const Database &db, const DatabaseSelection &selection,
|
2013-08-10 18:02:44 +02:00
|
|
|
DatabaseStats &stats, Error &error);
|
2012-08-15 22:20:28 +02:00
|
|
|
|
2012-08-15 21:32:34 +02:00
|
|
|
#endif
|