Archive*: move archive_domain to ArchiveDomain.cxx
Merge duplicate symbol.
This commit is contained in:
parent
d4c2f91182
commit
fa13a6616f
@ -363,6 +363,7 @@ src_mpd_SOURCES += \
|
|||||||
src/UpdateArchive.cxx src/UpdateArchive.hxx
|
src/UpdateArchive.cxx src/UpdateArchive.hxx
|
||||||
|
|
||||||
libarchive_a_SOURCES = \
|
libarchive_a_SOURCES = \
|
||||||
|
src/ArchiveDomain.cxx src/ArchiveDomain.hxx \
|
||||||
src/ArchiveLookup.cxx src/ArchiveLookup.hxx \
|
src/ArchiveLookup.cxx src/ArchiveLookup.hxx \
|
||||||
src/ArchiveList.cxx src/ArchiveList.hxx \
|
src/ArchiveList.cxx src/ArchiveList.hxx \
|
||||||
src/ArchivePlugin.cxx src/ArchivePlugin.hxx \
|
src/ArchivePlugin.cxx src/ArchivePlugin.hxx \
|
||||||
|
23
src/ArchiveDomain.cxx
Normal file
23
src/ArchiveDomain.cxx
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2003-2013 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ArchiveDomain.hxx"
|
||||||
|
#include "util/Domain.hxx"
|
||||||
|
|
||||||
|
const Domain archive_domain("archive");
|
25
src/ArchiveDomain.hxx
Normal file
25
src/ArchiveDomain.hxx
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2003-2013 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_ARCHIVE_DOMAIN_HXX
|
||||||
|
#define MPD_ARCHIVE_DOMAIN_HXX
|
||||||
|
|
||||||
|
extern const class Domain archive_domain;
|
||||||
|
|
||||||
|
#endif
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include "config.h" /* must be first for large file support */
|
#include "config.h" /* must be first for large file support */
|
||||||
#include "ArchiveLookup.hxx"
|
#include "ArchiveLookup.hxx"
|
||||||
#include "util/Domain.hxx"
|
#include "ArchiveDomain.hxx"
|
||||||
#include "Log.hxx"
|
#include "Log.hxx"
|
||||||
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
@ -29,8 +29,6 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
static constexpr Domain archive_domain("archive");
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* archive_lookup is used to determine if part of pathname refers to an regular
|
* archive_lookup is used to determine if part of pathname refers to an regular
|
||||||
|
@ -19,20 +19,18 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "ArchiveInputPlugin.hxx"
|
#include "ArchiveInputPlugin.hxx"
|
||||||
|
#include "ArchiveDomain.hxx"
|
||||||
#include "ArchiveLookup.hxx"
|
#include "ArchiveLookup.hxx"
|
||||||
#include "ArchiveList.hxx"
|
#include "ArchiveList.hxx"
|
||||||
#include "ArchivePlugin.hxx"
|
#include "ArchivePlugin.hxx"
|
||||||
#include "ArchiveFile.hxx"
|
#include "ArchiveFile.hxx"
|
||||||
#include "InputPlugin.hxx"
|
#include "InputPlugin.hxx"
|
||||||
#include "util/Error.hxx"
|
#include "util/Error.hxx"
|
||||||
#include "util/Domain.hxx"
|
|
||||||
#include "fs/Path.hxx"
|
#include "fs/Path.hxx"
|
||||||
#include "Log.hxx"
|
#include "Log.hxx"
|
||||||
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
static constexpr Domain archive_domain("archive");
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* select correct archive plugin to handle the input stream
|
* select correct archive plugin to handle the input stream
|
||||||
* may allow stacking of archive plugins. for example for handling
|
* may allow stacking of archive plugins. for example for handling
|
||||||
|
Loading…
Reference in New Issue
Block a user