Skip to content
Snippets Groups Projects
Select Git revision
  • 1c95f671086b663e17650a7624cea31450353869
  • main default protected
  • ud_training_script
  • fix_seed
  • merged-with-ner
  • multiword_fix_transformer
  • transformer_encoder
  • combo3
  • save_deprel_matrix_to_npz
  • master protected
  • combo-lambo
  • lambo-sent-attributes
  • adding_lambo
  • develop
  • update_allenlp2
  • develop_tmp
  • tokens_truncation
  • LR_test
  • eud_iwpt
  • iob
  • eud_iwpt_shared_task_bert_finetuning
  • 3.3.1
  • list
  • 3.2.1
  • 3.0.3
  • 3.0.1
  • 3.0.0
  • v1.0.6
  • v1.0.5
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
34 results

README.md

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