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

some fixes

parent 0f17554b
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
%include "std_string.i" %include "std_string.i"
%include "boost_shared_ptr.i" %include "boost_shared_ptr.i"
%template(ValuePtr) boost::shared_ptr<Wccl::Value>; // %template(ValuePtr) boost::shared_ptr<Wccl::Value>;
namespace Wccl { namespace Wccl {
class FunctionalOperator : public ParsedExpression { class FunctionalOperator : public ParsedExpression {
......
...@@ -60,10 +60,10 @@ namespace Wccl { ...@@ -60,10 +60,10 @@ namespace Wccl {
%template (StrSetOperator) Operator<StrSet>; %template (StrSetOperator) Operator<StrSet>;
%template (PositionOperator) Operator<Position>; %template (PositionOperator) Operator<Position>;
%template (BoolOperatorPtr) shared_ptr<Wccl::Operator<Bool> >; %template (BoolOperatorPtr) boost::shared_ptr<Operator<Bool> >;
%template (TSetOperatorPtr) shared_ptr<Wccl::Operator<TSet> >; %template (TSetOperatorPtr) boost::shared_ptr<Operator<TSet> >;
%template (StrSetOperatorPtr) shared_ptr<Wccl::Operator<StrSet> >; %template (StrSetOperatorPtr) boost::shared_ptr<Operator<StrSet> >;
%template (PositionOperatorPtr) shared_ptr<Wccl::Operator<Position> >; %template (PositionOperatorPtr) boost::shared_ptr<Operator<Position> >;
} }
using namespace boost; 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