Blame view

tools/maca/swig/swig_template_maca.template 410 Bytes
Jan Lupa authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef SWIG_LIBWCCL_TEMPLATE_I
#define SWIG_LIBWCCL_TEMPLATE_I

%module libccltemplate
%{
  // Add includes here...
  // #include <...>
%}

// %include "...i"

namespace Wccl {
  class Template {
  public:
    Template();
    ~Template();

    /* --------------------------------------------------------------------- */
  };
}

using namespace std;
using namespace Wccl;

#endif /* SWIG_LIBWCCL_TEMPLATE_I */