blob: 57f5adb1f04d7f8744dbac621721022452ce90e1 (
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
25
26
|
#pragma once
#include "ref.hpp"
namespace intellect {
namespace level2 {
namespace concepts {
using level1::concepts::nothing;
using level1::concepts::name;
static ref context("context");
static ref habit("habit");
static ref next("next");
static ref information("information");
static ref needed("needed");
static ref result("result");
static ref assume("assume");
static ref unexpected("unexpected");
static ref value("value");
}
}
}
|