19 lines
320 B
C++
19 lines
320 B
C++
|
|
#ifndef TOKENDEFINITION_H
|
|
#define TOKENDEFINITION_H
|
|
|
|
#include <string>
|
|
|
|
class TokenDefinition
|
|
{
|
|
public:
|
|
bool create(const std::string & name,
|
|
const std::string & definition, const std::string & flags);
|
|
|
|
protected:
|
|
std::string m_name;
|
|
std::string m_definition;
|
|
};
|
|
|
|
#endif
|