comparison Plugin/Token.h @ 113:43154740ea2e

wip: checking labels
author Alain Mazy <am@osimis.io>
date Tue, 05 Sep 2023 12:48:20 +0200
parents 1a13c4fbc9a1
children 9be1ee2b8fe1
comparison
equal deleted inserted replaced
112:572955904411 113:43154740ea2e
30 30
31 public: 31 public:
32 Token(TokenType type, 32 Token(TokenType type,
33 const std::string& key); 33 const std::string& key);
34 34
35 Token(const Token& other);
36
35 TokenType GetType() const 37 TokenType GetType() const
36 { 38 {
37 return type_; 39 return type_;
38 } 40 }
39 41