14 lines
257 B
C++
14 lines
257 B
C++
# pragma once
|
|
#include "stdc++.h"
|
|
#include "Token.h"
|
|
#include "Tbs.h"
|
|
class Scanner {
|
|
public:
|
|
Scanner(std::string source_code)
|
|
: m_source_code(source_code) {}
|
|
|
|
int is_int(int index);
|
|
private:
|
|
std::string m_source_code;
|
|
int index;
|
|
}; |