SWIG and Automated C/C++ Scripting Extensions
By David Beazley, February 01, 1998
SWIG, short for "Simplified Wrapper and Interface Generator," is a freely available tool that lets you generate interfaces to a variety of scripting languages from a common interface description.
Dr. Dobb's Journal February 1998: SWIG and Automated C/C++ Scripting Extensions
SWIG and Automated C/C++ Scripting Extensions
By David Beazley
Dr. Dobb's Journal February 1998
class Stack {
public:
Stack();
~Stack();
void push(char *value);
char *pop();
int depth();
};
Example 7: Simple C++ class.
Copyright © 1998, Dr. Dobb's Journal