|
Revision 239, 350 bytes
(checked in by ug, 1 year ago)
|
Handling of duplicates within GameList, also during process.
Better access to processing results.
|
| Line | |
|---|
| 1 |
%module libkombilo |
|---|
| 2 |
%include "std_string.i" |
|---|
| 3 |
%include "std_vector.i" |
|---|
| 4 |
|
|---|
| 5 |
namespace std { |
|---|
| 6 |
%template(vectors) vector<string>; |
|---|
| 7 |
%template(vectori) vector<int>; |
|---|
| 8 |
}; |
|---|
| 9 |
|
|---|
| 10 |
%{ |
|---|
| 11 |
#include "sgfparser.h" |
|---|
| 12 |
#include "abstractboard.h" |
|---|
| 13 |
#include "search.h" |
|---|
| 14 |
%} |
|---|
| 15 |
|
|---|
| 16 |
%include "sgfparser.h" |
|---|
| 17 |
%include "abstractboard.h" |
|---|
| 18 |
%include "search.h" |
|---|
| 19 |
%template(vectorMNC) std::vector<MoveNC>; |
|---|
| 20 |
|
|---|
| 21 |
|
|---|