10 lines
118 B
C++
10 lines
118 B
C++
#ifndef ACPA_WORK_H
|
|
#define ACPA_WORK_H
|
|
|
|
#include "token.h"
|
|
#include <vector>
|
|
|
|
void work(std::vector<Token>);
|
|
|
|
#endif
|