blob: 2255db4da2588d6769e1e3b8e315923145338505 [file] [log] [blame]
// -*-c++-*-
// Copyright (C) 2000 Tal Shalif
/* File : cpptest.i */
#ifdef SWIGJAVA
%module cpptestJava
#else
%module cpptest
#endif
%include MyString_typemap.i
%{
#define MyString string
#include <string>
#include "cpptest.H"
%}
%include "cpptest.H"
#ifdef SWIGJAVA
%pragma(java) modulecode="
static {
System.loadLibrary(\"cpptest\");
}";
#endif
// cpptest.i ends here