Skip to content
Snippets Groups Projects
Select Git revision
  • e607ad3b7232875bff311575d53533944e3caeb9
  • master default protected
  • develop protected
  • feat_remove_attr
  • python2.7
  • python3.8
6 results

corpus.h

Blame
  • libcclparser.i 482 B
    #ifndef SWIG_LIBCCL_PARSER_I
    #define SWIG_LIBCCL_PARSER_I
    
    %module libcclparser
    %{
      #include <libwccl/parser/Parser.h>
    %}
    
    %include "libcorpustagsetmanager.i"
    
    %include "std_string.i"
    %include "std_vector.i"
    
    namespace Wccl {
      class Parser {
      public:
        Parser(const Corpus2::Tagset&);
        ~TagsetManager();
    
        /* --------------------------------------------------------------------- */
      };
    }
    
    using namespace std;
    using namespace Corpus2;
    
    #endif /* SWIG_LIBCCL_PARSER_I */