summaryrefslogtreecommitdiff
path: root/libfusepp/fuseAppBase.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-07-26 16:44:33 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-07-26 16:44:33 +0100
commit1a79c689d694573c8649aca4e6fd58ecbbd70754 (patch)
treef13ba48c14e98fcf74ecfe841a4c58f0fa6a75bd /libfusepp/fuseAppBase.h
parentNo more static entcache hack (diff)
downloadnetfs-1a79c689d694573c8649aca4e6fd58ecbbd70754.tar.bz2
netfs-1a79c689d694573c8649aca4e6fd58ecbbd70754.tar.xz
netfs-1a79c689d694573c8649aca4e6fd58ecbbd70754.zip
Visibility hiddennetfs-1.1.3
Diffstat (limited to 'libfusepp/fuseAppBase.h')
-rw-r--r--libfusepp/fuseAppBase.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libfusepp/fuseAppBase.h b/libfusepp/fuseAppBase.h
index ccd2027..1a4a0bc 100644
--- a/libfusepp/fuseAppBase.h
+++ b/libfusepp/fuseAppBase.h
@@ -7,8 +7,11 @@
#include <exception>
#include <stdio.h>
#include <errno.h>
+#ifndef DLL_PUBLIC
+#define DLL_PUBLIC __attribute__ ((visibility ("default")))
+#endif
-class FuseAppBase {
+class DLL_PUBLIC FuseAppBase {
public:
FuseAppBase();
virtual ~FuseAppBase() = 0;