diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-20 16:07:46 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-23 12:05:36 +0100 |
commit | 01159643623de55f9e1de84d568032ca919dbd8f (patch) | |
tree | ce16c0be84c8648eae7afb69196b02393bc71c2f /include/tools | |
parent | f6f37e3341f2a3ad292af1a923dbc33d81e439c9 (diff) |
make more classes private in mergedlibs mode
Change-Id: I486922d0652f26fa7ee56f5fe308e19fe5ff137e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90856
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/b3dtrans.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/tools/b3dtrans.hxx b/include/tools/b3dtrans.hxx index 2f6752e0848a..c0747cfca174 100644 --- a/include/tools/b3dtrans.hxx +++ b/include/tools/b3dtrans.hxx @@ -22,6 +22,7 @@ #define ZBUFFER_DEPTH_RANGE (double(256L * 256L * 256L)) +#include <config_options.h> #include <basegfx/matrix/b3dhommatrix.hxx> #include <tools/gen.hxx> #include <basegfx/matrix/b2dhommatrix.hxx> @@ -30,7 +31,7 @@ #include <tools/toolsdllapi.h> /// Transformation sets for 3D output -class SAL_WARN_UNUSED TOOLS_DLLPUBLIC B3dTransformationSet +class SAL_WARN_UNUSED UNLESS_MERGELIBS(TOOLS_DLLPUBLIC) B3dTransformationSet { private: // Object Matrix Object -> World @@ -153,7 +154,7 @@ protected: Uses a simplified model, in which a point is described using a View Reference Point (VRP). */ -class SAL_WARN_UNUSED TOOLS_DLLPUBLIC B3dViewport : public B3dTransformationSet +class SAL_WARN_UNUSED UNLESS_MERGELIBS(TOOLS_DLLPUBLIC) B3dViewport : public B3dTransformationSet { private: basegfx::B3DPoint aVRP; // View Reference Point @@ -185,7 +186,7 @@ protected: // B3D camera -class SAL_WARN_UNUSED TOOLS_DLLPUBLIC B3dCamera final : public B3dViewport +class SAL_WARN_UNUSED UNLESS_MERGELIBS(TOOLS_DLLPUBLIC) B3dCamera final : public B3dViewport { public: B3dCamera( |