diff options
author | Max Kellermann <max@duempel.org> | 2014-01-27 11:05:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-27 11:05:21 +0100 |
commit | f548a966f5cb09ba8a5e99939fe5235e5ad59005 (patch) | |
tree | c88d639f9459fc643cab40ae8105f407d56ecb7c /src | |
parent | 67ad31b8b2a1e75f465ca43c4030ef298c7ca285 (diff) |
Playlist{Info,Vector}: move to db/
Diffstat (limited to 'src')
-rw-r--r-- | src/PlaylistDatabase.cxx | 2 | ||||
-rw-r--r-- | src/PlaylistFile.cxx | 4 | ||||
-rw-r--r-- | src/command/OtherCommands.cxx | 2 | ||||
-rw-r--r-- | src/command/PlaylistCommands.cxx | 2 | ||||
-rw-r--r-- | src/db/PlaylistInfo.hxx (renamed from src/PlaylistInfo.hxx) | 0 | ||||
-rw-r--r-- | src/db/PlaylistVector.cxx (renamed from src/PlaylistVector.cxx) | 0 | ||||
-rw-r--r-- | src/db/PlaylistVector.hxx (renamed from src/PlaylistVector.hxx) | 0 | ||||
-rw-r--r-- | src/db/plugins/ProxyDatabasePlugin.cxx | 2 | ||||
-rw-r--r-- | src/db/update/UpdateDatabase.cxx | 2 | ||||
-rw-r--r-- | src/db/update/UpdateWalk.cxx | 2 |
10 files changed, 8 insertions, 8 deletions
diff --git a/src/PlaylistDatabase.cxx b/src/PlaylistDatabase.cxx index 065aea320..81aeae2cd 100644 --- a/src/PlaylistDatabase.cxx +++ b/src/PlaylistDatabase.cxx @@ -19,7 +19,7 @@ #include "config.h" #include "PlaylistDatabase.hxx" -#include "PlaylistVector.hxx" +#include "db/PlaylistVector.hxx" #include "fs/TextFile.hxx" #include "util/StringUtil.hxx" #include "util/Error.hxx" diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx index 0b0f8d32d..71dbcba9c 100644 --- a/src/PlaylistFile.cxx +++ b/src/PlaylistFile.cxx @@ -20,8 +20,8 @@ #include "config.h" #include "PlaylistFile.hxx" #include "PlaylistSave.hxx" -#include "PlaylistInfo.hxx" -#include "PlaylistVector.hxx" +#include "db/PlaylistInfo.hxx" +#include "db/PlaylistVector.hxx" #include "db/DatabaseSong.hxx" #include "DetachedSong.hxx" #include "Mapper.hxx" diff --git a/src/command/OtherCommands.cxx b/src/command/OtherCommands.cxx index 6432ce4e7..328683d3d 100644 --- a/src/command/OtherCommands.cxx +++ b/src/command/OtherCommands.cxx @@ -42,7 +42,7 @@ #include "Stats.hxx" #include "Permission.hxx" #include "PlaylistFile.hxx" -#include "PlaylistVector.hxx" +#include "db/PlaylistVector.hxx" #include "client/ClientFile.hxx" #include "client/Client.hxx" #include "Idle.hxx" diff --git a/src/command/PlaylistCommands.cxx b/src/command/PlaylistCommands.cxx index fbbb66757..bd2e24a17 100644 --- a/src/command/PlaylistCommands.cxx +++ b/src/command/PlaylistCommands.cxx @@ -24,7 +24,7 @@ #include "PlaylistPrint.hxx" #include "PlaylistSave.hxx" #include "PlaylistFile.hxx" -#include "PlaylistVector.hxx" +#include "db/PlaylistVector.hxx" #include "playlist/PlaylistQueue.hxx" #include "playlist/Print.hxx" #include "TimePrint.hxx" diff --git a/src/PlaylistInfo.hxx b/src/db/PlaylistInfo.hxx index baa6cc361..baa6cc361 100644 --- a/src/PlaylistInfo.hxx +++ b/src/db/PlaylistInfo.hxx diff --git a/src/PlaylistVector.cxx b/src/db/PlaylistVector.cxx index 82a3519d9..82a3519d9 100644 --- a/src/PlaylistVector.cxx +++ b/src/db/PlaylistVector.cxx diff --git a/src/PlaylistVector.hxx b/src/db/PlaylistVector.hxx index 8820ead5c..8820ead5c 100644 --- a/src/PlaylistVector.hxx +++ b/src/db/PlaylistVector.hxx diff --git a/src/db/plugins/ProxyDatabasePlugin.cxx b/src/db/plugins/ProxyDatabasePlugin.cxx index daa963c7d..291b1bc1f 100644 --- a/src/db/plugins/ProxyDatabasePlugin.cxx +++ b/src/db/plugins/ProxyDatabasePlugin.cxx @@ -23,7 +23,7 @@ #include "db/DatabaseListener.hxx" #include "db/Selection.hxx" #include "db/DatabaseError.hxx" -#include "PlaylistInfo.hxx" +#include "db/PlaylistInfo.hxx" #include "db/LightDirectory.hxx" #include "db/LightSong.hxx" #include "SongFilter.hxx" diff --git a/src/db/update/UpdateDatabase.cxx b/src/db/update/UpdateDatabase.cxx index 8ef0b6d82..72a68de14 100644 --- a/src/db/update/UpdateDatabase.cxx +++ b/src/db/update/UpdateDatabase.cxx @@ -20,7 +20,7 @@ #include "config.h" /* must be first for large file support */ #include "UpdateDatabase.hxx" #include "UpdateRemove.hxx" -#include "PlaylistVector.hxx" +#include "db/PlaylistVector.hxx" #include "db/Directory.hxx" #include "db/Song.hxx" #include "db/DatabaseLock.hxx" diff --git a/src/db/update/UpdateWalk.cxx b/src/db/update/UpdateWalk.cxx index c5a9936e9..75924a7f7 100644 --- a/src/db/update/UpdateWalk.cxx +++ b/src/db/update/UpdateWalk.cxx @@ -28,7 +28,7 @@ #include "db/DatabaseSimple.hxx" #include "db/Directory.hxx" #include "db/Song.hxx" -#include "PlaylistVector.hxx" +#include "db/PlaylistVector.hxx" #include "playlist/PlaylistRegistry.hxx" #include "Mapper.hxx" #include "ExcludeList.hxx" |