0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
This commit is contained in:
Dwight 2008-03-17 11:59:34 -04:00
parent bdacd93bb8
commit bc24557b01
3 changed files with 13 additions and 3 deletions

View File

@ -189,6 +189,10 @@
RelativePath=".\introspect.cpp"
>
</File>
<File
RelativePath=".\javajs.cpp"
>
</File>
<File
RelativePath=".\jsobj.cpp"
>
@ -259,6 +263,10 @@
RelativePath=".\introspect.h"
>
</File>
<File
RelativePath=".\javajs.h"
>
</File>
<File
RelativePath=".\jsobj.h"
>

View File

@ -1,5 +1,7 @@
// java.cpp
#include "stdafx.h"
#include <jni.h>
#include <iostream>

View File

@ -1,7 +1,8 @@
// java.h
#ifndef _JAVA_H_
#define _JAVA_H_
#pragma once
#include "../stdafx.h"
#include "jsobj.h"
@ -65,4 +66,3 @@ class JavaJSImpl {
} JavaJS;
#endif // _JAVA_H_