MLT  7.38.0
Multimedia Framework
MltTokeniser.h
Go to the documentation of this file.
1 
20 #ifndef MLTPP_TOKENISER_H
21 #define MLTPP_TOKENISER_H
22 
23 #include "MltConfig.h"
24 
25 #include <framework/mlt.h>
26 
27 namespace Mlt {
37 {
38 private:
40 
41 public:
42  Tokeniser(char *text = NULL, char *delimiter = NULL);
43  ~Tokeniser();
44  int parse(char *text, char *delimiter = NULL);
45  int count();
46  char *get(int index);
47  char *input();
48 };
49 } // namespace Mlt
50 
51 #endif
#define MLTPP_DECLSPEC
MltConfig.h - Convenience header file for all mlt++ objects Copyright (C) 2004-2026 Meltytech,...
Definition: MltConfig.h:33
C++ wrapper for mlt_tokeniser — splits a string by a delimiter.
Definition: MltTokeniser.h:37
mlt_tokeniser tokens
Definition: MltTokeniser.h:39
header file for lazy client and implementation code :-)
MLT C++ wrapper Copyright (C) 2015-2026 Meltytech, LLC.
Definition: MltAnimation.h:27
Tokeniser class.
Definition: mlt_tokeniser.h:31