mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-30 07:29:29 +02:00
16 lines
392 B
C++
16 lines
392 B
C++
/*!********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
@file ClientData.cpp
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ClientData.h"
|
|
|
|
// These are needed out-of-line for the Windows link
|
|
ClientData::Base::~Base() = default;
|
|
template<> ClientData::Cloneable<>::~Cloneable() = default;
|