mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-21 23:00:06 +02:00
25 lines
379 B
C++
25 lines
379 B
C++
//
|
|
// UserException.cpp
|
|
//
|
|
//
|
|
// Created by Paul Licameli on 11/27/16.
|
|
//
|
|
//
|
|
|
|
#include "Audacity.h"
|
|
#include "UserException.h"
|
|
|
|
UserException::~UserException()
|
|
{
|
|
}
|
|
|
|
std::unique_ptr< AudacityException > UserException::Move()
|
|
{
|
|
return std::unique_ptr< AudacityException >
|
|
{ safenew UserException{ std::move( *this ) } };
|
|
}
|
|
|
|
void UserException::DelayedHandlerAction()
|
|
{
|
|
}
|