Files
scully/inc/Token.h

21 lines
330 B
C
Raw Permalink Normal View History

2013-05-31 23:51:44 +02:00
/* The scully programming language.
*
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
* Licensed under the GNU GPL v2.
*/
#ifndef TOKEN_H
#define TOKEN_H
#include <string>
class Token {
public:
Token(std::string text);
std::string getText();
private:
std::string text_;
};
#endif // TOKEN_H