Skip to content
Snippets Groups Projects
Select Git revision
  • a04db9cfbc73f58c306b6f35024b2262916011a1
  • master default protected
  • config
  • en-ru-support
  • languagetools
  • v2.0
  • v1.0
7 results

config

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 */