cppbind: Make Mac and Windows happy and add forward declaration

This commit is contained in:
Thomas Geymayer
2018-01-19 10:24:33 +01:00
parent 5f8f5a1c33
commit 3dca9b8a68

View File

@@ -22,6 +22,7 @@
#include <simgear/nasal/nasal.h>
#include <cstddef>
#include <string>
namespace nasal
{
@@ -30,7 +31,7 @@ namespace nasal
class Context;
class ContextWrapper;
class Hash;
class Me;
struct Me;
class Object;
class String;
@@ -49,6 +50,9 @@ namespace nasal
template<class Var>
struct from_nasal_ptr;
template<class T>
T get_member(naContext c, naRef obj, const std::string& name);
} // namespace nasal
#endif /* SG_NASAL_CPPBIND_FWD_HXX_ */