diff --git a/swig/tag.i b/swig/tag.i index dfad31aadeecafac8a3f315a914222ae4ecb31fd..9c8f58a79780438e988b54ba706ed4347bf6890d 100644 --- a/swig/tag.i +++ b/swig/tag.i @@ -48,6 +48,13 @@ namespace Corpus2 { }; size_t hash_value(const Tag &tag); + + %extend Tag { + long __hash__() { + return (long) hash_value(*self); + } + } + } using namespace std;