summaryrefslogtreecommitdiff
path: root/include/basic
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-10-23 20:40:49 +0200
committerMichael Stahl <mstahl@redhat.com>2014-10-23 21:30:45 +0200
commita7498603d8b532a1560c3ab816ddb941ad472945 (patch)
tree03527f37fce654236318daaf8f582b251fcb2c0a /include/basic
parentcefe8874a142ffb170d93654790b41197c37ef78 (diff)
basic: pimplify that
Change-Id: I0abe66ded0fd69a2720ad64e1a1426aafc7dfffb
Diffstat (limited to 'include/basic')
-rw-r--r--include/basic/basrdll.hxx15
1 files changed, 7 insertions, 8 deletions
diff --git a/include/basic/basrdll.hxx b/include/basic/basrdll.hxx
index bf6ba731cb11..274126d6c461 100644
--- a/include/basic/basrdll.hxx
+++ b/include/basic/basrdll.hxx
@@ -20,24 +20,23 @@
#ifndef INCLUDED_BASIC_BASRDLL_HXX
#define INCLUDED_BASIC_BASRDLL_HXX
-class ResMgr;
+#include <boost/scoped_ptr.hpp>
-#include <vcl/accel.hxx>
#include <basic/basicdllapi.h>
+class ResMgr;
+
class BASIC_DLLPUBLIC BasicDLL
{
-private:
- ResMgr* pBasResMgr;
-
- bool bDebugMode;
- bool bBreakEnabled;
+public:
+ struct Impl;
+ ::boost::scoped_ptr<Impl> m_pImpl;
public:
BasicDLL();
~BasicDLL();
- ResMgr* GetBasResMgr() const { return pBasResMgr; }
+ ResMgr* GetBasResMgr() const;
static void BasicBreak();