Skip to content
Snippets Groups Projects
Select Git revision
  • fb6645c2d1a9455c9c5686e964beafec60c1b8a0
  • master default protected
  • fix-words-ann
  • wccl-rules-migration
  • develop
5 results

tagaction.cpp

Blame
  • tagaction.cpp 330 B
    #include <libwccl/ops/tagaction.h>
    #include <libwccl/ops/functions/constant.h>
    namespace Wccl {
    
    namespace detail {
    
    boost::shared_ptr<Function<Position> > CurrentPos()
    {
    	static boost::shared_ptr<Function<Position> > current(
    			new Constant<Position>(Position(0)));
    	return current;
    }
    
    } /* end ns detail */
    } /* end ns Wccl */