blob: 01b4795ed449892307296824a32de17c19681942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <forstio/codec/data.hpp>
#include <forstio/codec/args.hpp>
namespace kel {
namespace lbm {
namespace sch {
using namespace saw::schema;
}
saw::error_or<void> init_lbm_env(){
return saw::make_void();
}
}
}
|