1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Added AUDACITY_DLL_API and similar to export more of our classes. This is a tiny adaptation of a patch by Stephen Parry for enabling his Eutychus plug-in. See audacity-devel thread 'Second Exports Patch' of Jan 11th 2014.

This commit is contained in:
james.k.crook@gmail.com
2014-01-13 21:09:14 +00:00
parent 0e7e4dbd86
commit 396486d3a6
5 changed files with 20 additions and 12 deletions

View File

@@ -14,7 +14,7 @@
#include "XMLTagHandler.h"
class XMLFileReader {
class AUDACITY_DLL_API XMLFileReader {
public:
XMLFileReader();
virtual ~XMLFileReader();

View File

@@ -16,7 +16,7 @@
///
/// XMLWriter
///
class XMLWriter {
class AUDACITY_DLL_API XMLWriter {
public:
@@ -72,7 +72,7 @@ class XMLWriter {
///
/// XMLFileWriter
///
class XMLFileWriter:public wxFFile, public XMLWriter {
class AUDACITY_DLL_API XMLFileWriter:public wxFFile, public XMLWriter {
public: