sencha-lang/sencha/include/token.h

15 lines
167 B
C++

#ifndef TOKEN_H
#define TOKEN_H
class Token
{
public:
Token();
virtual ~Token();
protected:
private:
};
#endif // TOKEN_H