aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sdp/ao_structs.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2016-04-24 22:35:39 -0400
committerRalph Amissah <ralph@amissah.com>2016-04-24 22:35:39 -0400
commit9c14b019a6f695b54a035605e3bb3fc76bf20aa6 (patch)
tree517169ec313d81aca54da3ddcb1f329b7caba695 /lib/sdp/ao_structs.d
parentstep1 (diff)
Diffstat (limited to 'lib/sdp/ao_structs.d')
-rw-r--r--lib/sdp/ao_structs.d43
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/sdp/ao_structs.d b/lib/sdp/ao_structs.d
deleted file mode 100644
index 0aeb235..0000000
--- a/lib/sdp/ao_structs.d
+++ /dev/null
@@ -1,43 +0,0 @@
-/+
- structs
- ao_structs.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;
- }
-}