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

helpers.h

Blame
  • helpers.h 354 B
    #ifndef LIBSORPUS2_IO_HELPERS_H
    #define LIBCORPUS2_IO_HELPERS_H
    
    #include <libcorpus2/chunk.h>
    #include <libcorpus2/tagset.h>
    
    namespace Corpus2 {
    
    std::vector<boost::shared_ptr<Chunk> > read_chunks_from_utf8_string(
    	const std::string& data,
    	const Tagset& tagset,
    	const std::string& format);
    
    } /* end ns Corpus2 */
    
    #endif // LIBCORPUS2_IO_HELPERS_H