Kaydet (Commit) d00d5f6f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Move member definition back into .cxx

Change-Id: Ie0698792c8785e0caee0e78222051451e5ebc65c
üst 266bb87e
......@@ -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.
......
......@@ -57,7 +57,10 @@ UnoVirtualMachine::UnoVirtualMachine(
}
}
rtl::Reference< jvmaccess::VirtualMachine >
UnoVirtualMachine::getVirtualMachine() const {
return m_virtualMachine;
}
UnoVirtualMachine::~UnoVirtualMachine() {
try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment