Added logger

This commit is contained in:
Rafał Grodziński
2025-07-02 12:03:47 +09:00
parent 7a22e0e33f
commit 56e380b3ed
3 changed files with 114 additions and 8 deletions

18
src/Logger.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef LOGGER_H
#define LOGGER_H
#include <vector>
class Token;
using namespace std;
class Logger {
private:
static string toString(shared_ptr<Token> token);
public:
static void print(vector<shared_ptr<Token>> tokens);
};
#endif