blob: 741a5af5f13fa853a83c71d5c994dbd00d82252d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#include "common.hpp"
#include "../level-0/memorystore.hpp"
#include <string>
#include <sstream>
#include <typeinfo>
namespace intellect {
namespace level1 {
concept* getnamed(std::string const & name);
std::string& getname(concept* r);
bool isa(concept* member, concept* group);
concept* hyphenate(concept* a, concept* b);
concept* alloc(std::any val);
}
}
|