23 lines
417 B
C++
23 lines
417 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright The Music Player Daemon Project
|
|
|
|
/*
|
|
* This header is included by encoder plugins.
|
|
*
|
|
*/
|
|
|
|
#ifndef MPD_ENCODER_API_HXX
|
|
#define MPD_ENCODER_API_HXX
|
|
|
|
// IWYU pragma: begin_exports
|
|
|
|
#include "EncoderInterface.hxx"
|
|
#include "EncoderPlugin.hxx"
|
|
#include "pcm/AudioFormat.hxx"
|
|
#include "tag/Tag.hxx"
|
|
#include "config/Block.hxx"
|
|
|
|
// IWYU pragma: end_exports
|
|
|
|
#endif
|