acpa/include/work.h
2023-08-29 20:06:01 +08:00

10 lines
138 B
C++

#ifndef ACPA_WORK_H
#define ACPA_WORK_H
#include "token.h"
#include "element.h"
#include <vector>
void work(std::vector<Token>);
#endif