diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-10 18:05:43 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-10 18:05:43 -0800 |
commit | 3223a360d0e70f75497aecf8c033a4f987335b5b (patch) | |
tree | c34e5ed5d7aa83513447644b4774c0449336657f /intellect-framework-from-internet/starts/meaning-vm/level-1/concepts.hpp | |
parent | 26c980d302adce8e3d802cb8db8ab1c69d58ce1a (diff) | |
download | standingwithresilience-3223a360d0e70f75497aecf8c033a4f987335b5b.tar.gz standingwithresilience-3223a360d0e70f75497aecf8c033a4f987335b5b.zip |
I'm confused and am handling multiple unexpected systems issues
Diffstat (limited to 'intellect-framework-from-internet/starts/meaning-vm/level-1/concepts.hpp')
-rw-r--r-- | intellect-framework-from-internet/starts/meaning-vm/level-1/concepts.hpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/intellect-framework-from-internet/starts/meaning-vm/level-1/concepts.hpp b/intellect-framework-from-internet/starts/meaning-vm/level-1/concepts.hpp deleted file mode 100644 index f33d228..0000000 --- a/intellect-framework-from-internet/starts/meaning-vm/level-1/concepts.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once - -#include "ref.hpp" - -namespace intellect { -namespace level1 { - -namespace concepts { - -static ref level1("level1"), allocations("allocations"); -static ref is("is", level1-allocations); // a link to define group relationships, links to the more general class -static ref name("name", level1-allocations); // used as the link to value<std::string> naming each concept -static ref text("text", level1-allocations); // used as the type of value<std::string> names -static ref nothing("nothing", level1-allocations); // default value of a ref -static ref anonymous("anonymous", level1-allocations); // a group given concepts with generated names -static ref link("link", level1-allocations); // TODO: for concepts that are links, link them with is=link -static ref level0("level0", level1-allocations) , level2("level2", level1-allocations) , level3("level3", level1-allocations) , level4("level4", level1-allocations) , level5("level5", level1-allocations) , level6("level6", level1-allocations) , level7("level7", level1-allocations) , level8("level8", level1-allocations) , level9("level9", level1-allocations); -static ref allocator("allocator"), allocates("allocates"); - -static ref _false("false", level1-allocations), _true("true", level1-allocations); - -//extern ref true, false; <-- casting provides as if these were declared - -} - -} -} |