mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +08:00
Let compiler define default constructors
This commit is contained in:
parent
95465a3359
commit
0a1090c89d
@ -49,12 +49,6 @@ class InputStream;
|
||||
class SFML_AUDIO_API InputSoundFile
|
||||
{
|
||||
public:
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Default constructor
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
InputSoundFile();
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Open a sound file from the disk for reading
|
||||
///
|
||||
|
@ -44,12 +44,6 @@ namespace sf
|
||||
class SFML_AUDIO_API OutputSoundFile
|
||||
{
|
||||
public:
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Default constructor
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
OutputSoundFile();
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
/// \brief Open the sound file from the disk for writing
|
||||
///
|
||||
|
@ -62,10 +62,6 @@ void InputSoundFile::StreamDeleter::operator()(InputStream* ptr) const
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
InputSoundFile::InputSoundFile() = default;
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
bool InputSoundFile::openFromFile(const std::filesystem::path& filename)
|
||||
{
|
||||
|
@ -32,10 +32,6 @@
|
||||
|
||||
namespace sf
|
||||
{
|
||||
////////////////////////////////////////////////////////////
|
||||
OutputSoundFile::OutputSoundFile() = default;
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
bool OutputSoundFile::openFromFile(const std::filesystem::path& filename, unsigned int sampleRate, unsigned int channelCount)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user