|
Audacity 3.2.0
|
Go to the documentation of this file.
10#ifndef __AUDACITY_CRTP_BASE__
11#define __AUDACITY_CRTP_BASE__
32 #define CRTP_BASE(alias, struct_or_class, ...) \
33 template struct_or_class __declspec(dllexport) __VA_ARGS__; \
34 using alias = __VA_ARGS__
36 #define CRTP_BASE(alias, struct_or_class, ...) \
37 using alias = __VA_ARGS__