xo-expression2: refactor: layout Variable support file locn
This commit is contained in:
parent
ba19c627e5
commit
c38ab90cdd
11 changed files with 16 additions and 16 deletions
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/expression2",
|
||||
output_cpp_dir: "src/expression2/facet",
|
||||
output_hpp_dir: "include/xo/expression2",
|
||||
output_impl_subdir: "detail",
|
||||
output_impl_subdir: "variable",
|
||||
includes: [ "\"Expression.hpp\"" ],
|
||||
local_types: [ ],
|
||||
namespace1: "xo",
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/expression2",
|
||||
output_cpp_dir: "src/expression2/facet",
|
||||
output_hpp_dir: "include/xo/expression2",
|
||||
output_impl_subdir: "detail",
|
||||
output_impl_subdir: "variable",
|
||||
includes: [
|
||||
"<xo/alloc2/GCObject.hpp>",
|
||||
"<xo/alloc2/Allocator.hpp>"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/expression2",
|
||||
output_cpp_dir: "src/expression2/facet",
|
||||
output_hpp_dir: "include/xo/expression2",
|
||||
output_impl_subdir: "detail",
|
||||
output_impl_subdir: "variable",
|
||||
includes: [ "<xo/printable2/Printable.hpp>",
|
||||
"<xo/printable2/detail/IPrintable_Xfer.hpp>" ],
|
||||
local_types: [ ],
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
#pragma once
|
||||
|
||||
#include "DVariable.hpp"
|
||||
#include "detail/IExpression_DVariable.hpp"
|
||||
#include "detail/IGCObject_DVariable.hpp"
|
||||
#include "detail/IPrintable_DVariable.hpp"
|
||||
#include "variable/IExpression_DVariable.hpp"
|
||||
#include "variable/IGCObject_DVariable.hpp"
|
||||
#include "variable/IPrintable_DVariable.hpp"
|
||||
|
||||
/* end Variable.hpp */
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ set(SELF_SRCS
|
|||
SetupExpression2.cpp
|
||||
|
||||
DConstant.cpp
|
||||
DVariable.cpp
|
||||
DVarRef.cpp
|
||||
DApplyExpr.cpp
|
||||
|
||||
|
|
@ -20,9 +19,10 @@ set(SELF_SRCS
|
|||
IGCObject_DConstant.cpp
|
||||
IPrintable_DConstant.cpp
|
||||
|
||||
IExpression_DVariable.cpp
|
||||
IGCObject_DVariable.cpp
|
||||
IPrintable_DVariable.cpp
|
||||
DVariable.cpp
|
||||
facet/IExpression_DVariable.cpp
|
||||
facet/IGCObject_DVariable.cpp
|
||||
facet/IPrintable_DVariable.cpp
|
||||
|
||||
IExpression_DVarRef.cpp
|
||||
IGCObject_DVarRef.cpp
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
* [idl/IExpression_DVariable.json5]
|
||||
**/
|
||||
|
||||
#include "detail/IExpression_DVariable.hpp"
|
||||
#include "variable/IExpression_DVariable.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace scm {
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
* [idl/IGCObject_DVariable.json5]
|
||||
**/
|
||||
|
||||
#include "detail/IGCObject_DVariable.hpp"
|
||||
#include "variable/IGCObject_DVariable.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace scm {
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
* [idl/IPrintable_DVariable.json5]
|
||||
**/
|
||||
|
||||
#include "detail/IPrintable_DVariable.hpp"
|
||||
#include "variable/IPrintable_DVariable.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace scm {
|
||||
Loading…
Add table
Add a link
Reference in a new issue