summaryrefslogtreecommitdiffstats
path: root/src/server/UndoStack.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-19 14:08:13 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 00:42:31 -0400
commit2b1513dc20d8c6a1d27c17d03d8bba98953ebfbc (patch)
tree52e42670217cf8ad7081c3913fc856a7c3b47269 /src/server/UndoStack.hpp
parent2f44d47ab3d06e106e034e1e66f5afc06ee75f89 (diff)
downloadingen-2b1513dc20d8c6a1d27c17d03d8bba98953ebfbc.tar.gz
ingen-2b1513dc20d8c6a1d27c17d03d8bba98953ebfbc.tar.bz2
ingen-2b1513dc20d8c6a1d27c17d03d8bba98953ebfbc.zip
Separate export macro definitions between modules
Diffstat (limited to 'src/server/UndoStack.hpp')
-rw-r--r--src/server/UndoStack.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/UndoStack.hpp b/src/server/UndoStack.hpp
index 7749b8fb..713ad777 100644
--- a/src/server/UndoStack.hpp
+++ b/src/server/UndoStack.hpp
@@ -18,10 +18,10 @@
#define INGEN_ENGINE_UNDOSTACK_HPP
#include "ingen/AtomSink.hpp"
-#include "ingen/ingen.h"
#include "lv2/atom/atom.h"
#include "lv2/atom/util.h"
#include "serd/serd.h"
+#include "server.h"
#include "sratom/sratom.h"
#include <algorithm>
@@ -39,7 +39,7 @@ class URIs;
namespace server {
-class INGEN_API UndoStack : public AtomSink {
+class INGEN_SERVER_API UndoStack : public AtomSink {
public:
struct Entry {
Entry(time_t t=0) : time(t) {}