Skip to content
Snippets Groups Projects
Commit 76e9ee55 authored by Paweł Kędzia's avatar Paweł Kędzia
Browse files

(swig) Wccl::Operator fixed

parent a292d9b2
Branches
No related merge requests found
......@@ -21,31 +21,33 @@
%feature("notabstract") Wccl::Operator;
%rename(__op_cop__) Wccl::Operator::operator=(const Operator& other);
%rename(__op_fun__) Wccl::Operator::operator()(const SentenceContext& sentence_context);
namespace Wccl {
template <class T> class Operator : public FunctionalOperator {
public:
Operator();
Operator& operator=(const Operator& other);
/*
Operator(const boost::shared_ptr<const Function<T> >& body, const Variables& variables);
*/
Operator(const Operator& other, bool clean = false);
/* --------------------------------------------------------------------- */
%rename(OperatorEq) *::operator=(const Operator& other);
/* --------------------------------------------------------------------- */
%rename(OpFun) operator()(const SentenceContext& sentence_context);
boost::shared_ptr<const T> operator()(const SentenceContext& sentence_context);
/* --------------------------------------------------------------------- */
boost::shared_ptr<const T> apply(const SentenceContext& sentence_context);
boost::shared_ptr<T> copy_apply(const SentenceContext& sentence_context);
boost::shared_ptr<const Value> base_apply(const SentenceContext& sc);
/* --------------------------------------------------------------------- */
Operator clone() const;
Operator clone_clean() const;
/* --------------------------------------------------------------------- */
boost::shared_ptr<Operator<T> > clone_ptr() const;
boost::shared_ptr<Operator<T> > clone_clean_ptr() const;
/* --------------------------------------------------------------------- */
std::string to_string(const Corpus2::Tagset& tagset) const;
protected:
......@@ -58,10 +60,10 @@ namespace Wccl {
%template (StrSetOperator) Operator<StrSet>;
%template (PositionOperator) Operator<Position>;
%template (SharedPtrBoolOperator) boost::shared_ptr<Operator<Bool> >;
%template (SharedPtrTSetOperator) boost::shared_ptr<Operator<TSet> >;
%template (SharedPtrStrSetOperator) boost::shared_ptr<Operator<StrSet> >;
%template (SharedPtrPositionOperator) boost::shared_ptr<Operator<Position> >;
%template (BoolOperatorPtr) shared_ptr<Wccl::Operator<Bool> >;
%template (TSetOperatorPtr) shared_ptr<Wccl::Operator<TSet> >;
%template (StrSetOperatorPtr) shared_ptr<Wccl::Operator<StrSet> >;
%template (PositionOperatorPtr) shared_ptr<Wccl::Operator<Position> >;
}
using namespace boost;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment