summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tvararg.pkg
blob: 0ab6d88c07712810f8851b0a9321519b94ae81ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$#include "tvararg.h"

struct B
{
  static int n;
  B();
  ~B();
};

class A
{
  A();
  double get (int i) ;
  tolua_index bounce (tolua_index i, tolua_index *j, tolua_index* k=0);
  double add (lua_State* L);
  tolua_own B* GetB ();
};