Sticker*: move to sticker/

This commit is contained in:
Max Kellermann 2014-01-24 16:15:41 +01:00
parent eef7ba48dd
commit 973c9872f9
11 changed files with 10 additions and 10 deletions

View File

@ -244,9 +244,9 @@ endif
if ENABLE_SQLITE
src_mpd_SOURCES += \
src/command/StickerCommands.cxx src/command/StickerCommands.hxx \
src/StickerDatabase.cxx src/StickerDatabase.hxx \
src/StickerPrint.cxx src/StickerPrint.hxx \
src/SongSticker.cxx src/SongSticker.hxx
src/sticker/StickerDatabase.cxx src/sticker/StickerDatabase.hxx \
src/sticker/StickerPrint.cxx src/sticker/StickerPrint.hxx \
src/sticker/SongSticker.cxx src/sticker/SongSticker.hxx
endif
# Generic utility library

View File

@ -72,7 +72,7 @@
#endif
#ifdef ENABLE_SQLITE
#include "StickerDatabase.hxx"
#include "sticker/StickerDatabase.hxx"
#endif
#ifdef ENABLE_ARCHIVE

View File

@ -37,7 +37,7 @@
#ifdef ENABLE_SQLITE
#include "StickerCommands.hxx"
#include "StickerDatabase.hxx"
#include "sticker/StickerDatabase.hxx"
#endif
#include <assert.h>

View File

@ -24,9 +24,9 @@
#include "DatabasePlugin.hxx"
#include "DatabaseGlue.hxx"
#include "DatabaseSimple.hxx"
#include "SongSticker.hxx"
#include "StickerPrint.hxx"
#include "StickerDatabase.hxx"
#include "sticker/SongSticker.hxx"
#include "sticker/StickerPrint.hxx"
#include "sticker/StickerDatabase.hxx"
#include "CommandError.hxx"
#include "protocol/Result.hxx"
#include "util/Error.hxx"

View File

@ -30,8 +30,8 @@
#include "Log.hxx"
#ifdef ENABLE_SQLITE
#include "StickerDatabase.hxx"
#include "SongSticker.hxx"
#include "sticker/StickerDatabase.hxx"
#include "sticker/SongSticker.hxx"
#endif
#include <assert.h>