A command-line front-end for libabacus written in C++
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
#include "types.hpp"
|
|
#include "ref.hpp"
|
|
|
|
template <typename T>
|
|
ref create_value(libab* ab, T* val);
|
|
|
|
template <>
|
|
ref create_value<string>(libab* ab, string* param);
|
|
|
|
template <>
|
|
ref create_value<number>(libab* ab, number* param);
|
|
|