diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-27 16:12:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-27 16:12:02 +0100 |
commit | d00d5f6fe89fddb214aad2087d8352426c1c78d4 (patch) | |
tree | 6d61fe1950d5229fc809c6bbfb0184c4095f0526 /include | |
parent | 266bb87ec7eac4c9e4fae82986324c98c6d1032c (diff) |
Move member definition back into .cxx
Change-Id: Ie0698792c8785e0caee0e78222051451e5ebc65c
Diffstat (limited to 'include')
-rw-r--r-- | include/jvmaccess/unovirtualmachine.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/jvmaccess/unovirtualmachine.hxx b/include/jvmaccess/unovirtualmachine.hxx index 5ff94a784916..382699982aba 100644 --- a/include/jvmaccess/unovirtualmachine.hxx +++ b/include/jvmaccess/unovirtualmachine.hxx @@ -21,13 +21,14 @@ #define INCLUDED_JVMACCESS_UNOVIRTUALMACHINE_HXX #include <jvmaccess/jvmaccessdllapi.h> -#include <jvmaccess/virtualmachine.hxx> #include <sal/config.h> #include <salhelper/simplereferenceobject.hxx> #include <rtl/ref.hxx> namespace jvmaccess { +class VirtualMachine; + /** An encapsulating wrapper around a Java virtual machine and an appropriate UNO class loader. */ @@ -73,7 +74,7 @@ public: @return The Java virtual machine wrapper. Will never be null. */ - rtl::Reference< jvmaccess::VirtualMachine > getVirtualMachine() const { return m_virtualMachine;} + rtl::Reference< jvmaccess::VirtualMachine > getVirtualMachine() const; /** Get the UNO class loader. |