xo-interpreter2 stack: refactor: string clases -> xo-stringtable2/
This commit is contained in:
parent
5fc59b0df4
commit
f60f90d8f3
20 changed files with 966 additions and 6 deletions
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/object2",
|
||||
output_hpp_dir: "include/xo/object2",
|
||||
output_cpp_dir: "src/stringtable2",
|
||||
output_hpp_dir: "include/xo/stringtable2",
|
||||
output_impl_subdir: "string",
|
||||
includes: [
|
||||
"<xo/gc/GCObject.hpp>",
|
||||
"<xo/alloc2/GCObject.hpp>",
|
||||
"<xo/alloc2/Allocator.hpp>"
|
||||
],
|
||||
local_types: [ ],
|
||||
|
|
|
|||
18
idl/IGCObject_DUniqueString.json5
Normal file
18
idl/IGCObject_DUniqueString.json5
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/stringtable2",
|
||||
output_hpp_dir: "include/xo/stringtable2",
|
||||
output_impl_subdir: "uniquestring",
|
||||
includes: [
|
||||
"<xo/alloc2/GCObject.hpp>",
|
||||
"<xo/alloc2/Allocator.hpp>"
|
||||
],
|
||||
local_types: [ ],
|
||||
namespace1: "xo",
|
||||
namespace2: "scm",
|
||||
facet_idl: "idl/GCObject.json5",
|
||||
brief: "provide AGCObject interface for DUniqueString",
|
||||
using_doxygen: true,
|
||||
repr: "DUniqueString",
|
||||
doc: [ "implement AGCObject for DUniqueString" ],
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/object2",
|
||||
output_hpp_dir: "include/xo/object2",
|
||||
output_cpp_dir: "src/stringtable2",
|
||||
output_hpp_dir: "include/xo/stringtable2",
|
||||
output_impl_subdir: "string",
|
||||
includes: [ "<xo/printable2/Printable.hpp>",
|
||||
"<xo/printable2/detail/IPrintable_Xfer.hpp>" ],
|
||||
|
|
|
|||
16
idl/IPrintable_DUniqueString.json5
Normal file
16
idl/IPrintable_DUniqueString.json5
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/stringtable2",
|
||||
output_hpp_dir: "include/xo/stringtable2",
|
||||
output_impl_subdir: "uniquestring",
|
||||
includes: [ "<xo/printable2/Printable.hpp>",
|
||||
"<xo/printable2/detail/IPrintable_Xfer.hpp>" ],
|
||||
local_types: [ ],
|
||||
namespace1: "xo",
|
||||
namespace2: "scm",
|
||||
facet_idl: "idl/Printable.json5",
|
||||
brief: "provide APrintable interface for DUniqueString",
|
||||
using_doxygen: true,
|
||||
repr: "DUniqueString",
|
||||
doc: [ "implement APrintable for DUniqueString" ],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue