Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
affe21f7
Commit
affe21f7
authored
Aug 15, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
db_visitor: delete obsolete header
parent
9facf789
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
61 deletions
+0
-61
Makefile.am
Makefile.am
+0
-1
DatabaseGlue.cxx
src/DatabaseGlue.cxx
+0
-1
Directory.cxx
src/Directory.cxx
+0
-1
ProxyDatabasePlugin.cxx
src/db/ProxyDatabasePlugin.cxx
+0
-3
SimpleDatabasePlugin.cxx
src/db/SimpleDatabasePlugin.cxx
+0
-1
db_visitor.h
src/db_visitor.h
+0
-54
No files found.
Makefile.am
View file @
affe21f7
...
...
@@ -263,7 +263,6 @@ src_mpd_SOURCES = \
src/db_error.h
\
src/db_lock.c src/db_lock.h
\
src/db_save.c src/db_save.h
\
src/db_visitor.h
\
src/DatabasePlugin.hxx
\
src/DatabaseVisitor.hxx
\
src/DatabaseSelection.hxx
\
...
...
src/DatabaseGlue.cxx
View file @
affe21f7
...
...
@@ -25,7 +25,6 @@ extern "C" {
#include "database.h"
#include "db_error.h"
#include "db_save.h"
#include "db_visitor.h"
#include "stats.h"
#include "conf.h"
#include "glib_compat.h"
...
...
src/Directory.cxx
View file @
affe21f7
...
...
@@ -26,7 +26,6 @@ extern "C" {
#include "playlist_vector.h"
#include "path.h"
#include "util/list_sort.h"
#include "db_visitor.h"
#include "db_lock.h"
#include "locate.h"
}
...
...
src/db/ProxyDatabasePlugin.cxx
View file @
affe21f7
...
...
@@ -25,9 +25,6 @@
extern
"C"
{
#include "db_error.h"
#include "db_visitor.h"
#include "db_save.h"
#include "db_lock.h"
#include "conf.h"
#include "song.h"
#include "tag.h"
...
...
src/db/SimpleDatabasePlugin.cxx
View file @
affe21f7
...
...
@@ -23,7 +23,6 @@
extern
"C"
{
#include "db_error.h"
#include "db_visitor.h"
#include "db_save.h"
#include "db_lock.h"
#include "conf.h"
...
...
src/db_visitor.h
deleted
100644 → 0
View file @
9facf789
/*
* Copyright (C) 2003-2011 The Music Player Daemon Project
* 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_DB_VISITOR_H
#define MPD_DB_VISITOR_H
struct
directory
;
struct
song
;
struct
playlist_metadata
;
struct
db_visitor
{
/**
* Visit a directory. Optional method.
*
* @return true to continue the operation, false on error (set error_r)
*/
bool
(
*
directory
)(
const
struct
directory
*
directory
,
void
*
ctx
,
GError
**
error_r
);
/**
* Visit a song. Optional method.
*
* @return true to continue the operation, false on error (set error_r)
*/
bool
(
*
song
)(
struct
song
*
song
,
void
*
ctx
,
GError
**
error_r
);
/**
* Visit a playlist. Optional method.
*
* @param directory the directory the playlist resides in
* @return true to continue the operation, false on error (set error_r)
*/
bool
(
*
playlist
)(
const
struct
playlist_metadata
*
playlist
,
const
struct
directory
*
directory
,
void
*
ctx
,
GError
**
error_r
);
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment