diff options
author | Ralph Amissah <ralph@amissah.com> | 2016-04-24 22:35:39 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2016-04-24 22:35:39 -0400 |
commit | 9c14b019a6f695b54a035605e3bb3fc76bf20aa6 (patch) | |
tree | 517169ec313d81aca54da3ddcb1f329b7caba695 /org/ao_structs.org | |
parent | step1 (diff) |
step2doc-reform_v0.0.2
Diffstat (limited to 'org/ao_structs.org')
-rw-r--r-- | org/ao_structs.org | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/org/ao_structs.org b/org/ao_structs.org deleted file mode 100644 index 9350eb5..0000000 --- a/org/ao_structs.org +++ /dev/null @@ -1,71 +0,0 @@ -#+TITLE: sdp structs -#+AUTHOR: Ralph Amissah -#+EMAIL: ralph.amissah@gmail.com -#+STARTUP: indent -#+LANGUAGE: en -#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t -#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc -#+OPTIONS: author:nil email:nil creator:nil timestamp:nil -#+PROPERTY: header-args :padline no :exports code :noweb yes -#+EXPORT_SELECT_TAGS: export -#+EXPORT_EXCLUDE_TAGS: noexport -#+FILETAGS: :sdp:dev:ao: -#+TAGS: assert(a) class(c) debug(d) mixin(m) sdp(s) tangle(T) template(t) WEB(W) noexport(n) - -* structs :struct: -[[./sdp.org][sdp]] - -** initialize -#+name: structs -#+BEGIN_SRC d -/+ structs +/ - -mixin template Structs() { - struct ObjHeading { - string type; - string lev; - string lvn; - string lcn; - } - struct ObjPara { - string indent_first; - string indent_second; - string bullet; - } - struct ObjComment { - // does not have .attrib; - // does not have .ocn - } - struct ObjBlock { - } - struct ObjBlockOcnString { - // does not have .attrib; - string node; - } - struct ObjComposite { - // size_t id; - string use; - string of; - string is_a; - string object; - string ocn; - string attrib; - // int ocn; - ObjHeading heading; - ObjPara para; - ObjBlock block; - ObjBlockOcnString block_ocn_string; - } -} -#+END_SRC - -* tangles :tangle: -** code structure: :ao_structs.d: -#+name: tangle_ao_structs -#+BEGIN_SRC d :tangle ../lib/sdp/ao_structs.d -/+ - structs - ao_structs.d -+/ -<<structs>> -#+END_SRC |