waf/playground/swig/extend/a.h

14 lines
107 B
C++

#ifndef A_H
#define A_H
class A {
public:
A();
~A();
int add(int a, int b);
};
#endif /* A_H */