diff options
author | Max Kellermann <max@duempel.org> | 2013-01-02 22:25:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-02 22:25:17 +0100 |
commit | 9ceb8a717ae940972904ef83722f71c3ee124715 (patch) | |
tree | 31fc9fed3ca5934581455ddf603a3e3f78fc66d3 /src/AllCommands.cxx | |
parent | 8331de424a67b137cd83ce817da0fceec647dc2f (diff) | |
download | mpd-9ceb8a717ae940972904ef83722f71c3ee124715.tar.gz mpd-9ceb8a717ae940972904ef83722f71c3ee124715.tar.xz mpd-9ceb8a717ae940972904ef83722f71c3ee124715.zip |
sticker: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/AllCommands.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/AllCommands.cxx b/src/AllCommands.cxx index 28e3d3ebd..6026c6906 100644 --- a/src/AllCommands.cxx +++ b/src/AllCommands.cxx @@ -29,7 +29,6 @@ extern "C" { #include "PlaylistCommands.hxx" #include "DatabaseCommands.hxx" #include "OutputCommands.hxx" -#include "StickerCommands.hxx" #include "MessageCommands.hxx" #include "OtherCommands.hxx" #include "permission.h" @@ -39,11 +38,12 @@ extern "C" { #include "protocol/result.h" #include "tokenizer.h" #include "client.h" +} #ifdef ENABLE_SQLITE -#include "sticker.h" +#include "StickerCommands.hxx" +#include "StickerDatabase.hxx" #endif -} #include <assert.h> #include <string.h> |