blob: 1f41cc0a9859a9491e3870ff133c7662b508dc3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (C) by Josh Blum. See LICENSE.txt for licensing information.
#ifndef INCLUDED_GRAS_IO_SIGNATURE_I
#define INCLUDED_GRAS_IO_SIGNATURE_I
%{
#include <gras/io_signature.hpp>
%}
%ignore gras::IOSignature::operator->();
%ignore gras::IOSignature::operator->() const;
%include <std_vector.i>
%template () std::vector<int>;
%include <gras/io_signature.hpp>
#endif /*INCLUDED_GRAS_IO_SIGNATURE_I*/
|