audacia/src/UserException.h
Paul Licameli 406b23cae7 More uses of AUDACITY_DLL_API...
... in many places where the function call will later need to be between
modules (or libraries, or the executable) and the annotation will be a necessity
to keep the linkage working on Windows.

That's all that this sweeping commit does.
2021-05-10 10:46:55 -04:00

27 lines
583 B
C++

/*!
@file UserException.h
@brief An AudacityException with no visible message
Created by Paul Licameli on 11/27/16.
*/
#ifndef __AUDACITY_USER_EXCEPTION__
#define __AUDACITY_USER_EXCEPTION__
#include "AudacityException.h"
//! Can be thrown when user cancels operations, as with a progress dialog. Delayed handler does nothing
/*! This class does not inherit from MessageBoxException. */
class AUDACITY_DLL_API UserException final : public AudacityException
{
public:
UserException() {}
~UserException() override;
void DelayedHandlerAction() override;
};
#endif