18 lines
353 B
C++
18 lines
353 B
C++
#ifndef fkstd_COMMONS_HPP
|
|
#define fkstd_COMMONS_HPP
|
|
|
|
#include <cmath>
|
|
#include "../src/Module.hpp"
|
|
#include "../src/Constant.hpp"
|
|
#include "../src/SymTable.hpp"
|
|
|
|
using namespace fk;
|
|
|
|
#define STDARGS std::vector<std::shared_ptr<Constant>>
|
|
#define STDRET std::shared_ptr<Constant>
|
|
#define STDSYM std::shared_ptr<SymTable>
|
|
|
|
FK_ERROR(assert_error);
|
|
|
|
#endif
|