Skip to content
Snippets Groups Projects
Select Git revision
  • 6e102b044f6aad89a73004036216c9d19ea17c23
  • master default protected
  • vertical_relations
  • lu_without_semantic_frames
  • hierarchy
  • additional-unification-filters
  • v0.1.1
  • v0.1.0
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
17 results

Dockerfile

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