mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
331 B
19 lines
331 B
/*
|
|
* Temporary swig interface file while developing C++ options.
|
|
*/
|
|
|
|
%module sw_gnc_optiondb
|
|
%{
|
|
#include <libguile.h>
|
|
#include "gnc-optiondb.hpp"
|
|
extern "C" SCM scm_init_sw_gnc_optiondb_module(void);
|
|
%}
|
|
|
|
%include <std_string.i>
|
|
|
|
%ignore OptionClassifier;
|
|
%ignore GncOption;
|
|
%ignore GncOptionWrapper;
|
|
|
|
%include "gnc-optiondb.hpp"
|