diff options
author | David Robillard <d@drobilla.net> | 2015-03-02 17:14:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-03-02 17:14:31 +0000 |
commit | e5da085b75ff7c33a10ac2b03434d487c47340f2 (patch) | |
tree | c59e52d7442dd735ec48dd0fc2d11e6838a15d6a /ingen/client/PortModel.hpp | |
parent | f69c75e637cc3c789a675d1811a2f632732bafc0 (diff) | |
download | ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.tar.gz ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.tar.bz2 ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.zip |
Fix compilation with -fvisibility=hidden.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5611 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/client/PortModel.hpp')
-rw-r--r-- | ingen/client/PortModel.hpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ingen/client/PortModel.hpp b/ingen/client/PortModel.hpp index 647aa922..5903e865 100644 --- a/ingen/client/PortModel.hpp +++ b/ingen/client/PortModel.hpp @@ -20,13 +20,12 @@ #include <cstdlib> #include <string> +#include "ingen/client/ObjectModel.hpp" +#include "ingen/ingen.h" #include "ingen/types.hpp" - #include "lv2/lv2plug.in/ns/ext/port-props/port-props.h" #include "lv2/lv2plug.in/ns/lv2core/lv2.h" -#include "ingen/client/ObjectModel.hpp" - namespace Raul { class Path; } namespace Ingen { @@ -36,7 +35,7 @@ namespace Client { * * @ingroup IngenClient */ -class PortModel : public ObjectModel +class INGEN_API PortModel : public ObjectModel { public: enum class Direction { INPUT, OUTPUT }; |