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",
|
mode: "implementation",
|
||||||
output_cpp_dir: "src/expression2",
|
output_cpp_dir: "src/expression2/facet",
|
||||||
output_hpp_dir: "include/xo/expression2",
|
output_hpp_dir: "include/xo/expression2",
|
||||||
output_impl_subdir: "detail",
|
output_impl_subdir: "variable",
|
||||||
includes: [ "\"Expression.hpp\"" ],
|
includes: [ "\"Expression.hpp\"" ],
|
||||||
local_types: [ ],
|
local_types: [ ],
|
||||||
namespace1: "xo",
|
namespace1: "xo",
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
mode: "implementation",
|
mode: "implementation",
|
||||||
output_cpp_dir: "src/expression2",
|
output_cpp_dir: "src/expression2/facet",
|
||||||
output_hpp_dir: "include/xo/expression2",
|
output_hpp_dir: "include/xo/expression2",
|
||||||
output_impl_subdir: "detail",
|
output_impl_subdir: "variable",
|
||||||
includes: [
|
includes: [
|
||||||
"<xo/alloc2/GCObject.hpp>",
|
"<xo/alloc2/GCObject.hpp>",
|
||||||
"<xo/alloc2/Allocator.hpp>"
|
"<xo/alloc2/Allocator.hpp>"
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
mode: "implementation",
|
mode: "implementation",
|
||||||
output_cpp_dir: "src/expression2",
|
output_cpp_dir: "src/expression2/facet",
|
||||||
output_hpp_dir: "include/xo/expression2",
|
output_hpp_dir: "include/xo/expression2",
|
||||||
output_impl_subdir: "detail",
|
output_impl_subdir: "variable",
|
||||||
includes: [ "<xo/printable2/Printable.hpp>",
|
includes: [ "<xo/printable2/Printable.hpp>",
|
||||||
"<xo/printable2/detail/IPrintable_Xfer.hpp>" ],
|
"<xo/printable2/detail/IPrintable_Xfer.hpp>" ],
|
||||||
local_types: [ ],
|
local_types: [ ],
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "DVariable.hpp"
|
#include "DVariable.hpp"
|
||||||
#include "detail/IExpression_DVariable.hpp"
|
#include "variable/IExpression_DVariable.hpp"
|
||||||
#include "detail/IGCObject_DVariable.hpp"
|
#include "variable/IGCObject_DVariable.hpp"
|
||||||
#include "detail/IPrintable_DVariable.hpp"
|
#include "variable/IPrintable_DVariable.hpp"
|
||||||
|
|
||||||
/* end Variable.hpp */
|
/* end Variable.hpp */
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ set(SELF_SRCS
|
||||||
SetupExpression2.cpp
|
SetupExpression2.cpp
|
||||||
|
|
||||||
DConstant.cpp
|
DConstant.cpp
|
||||||
DVariable.cpp
|
|
||||||
DVarRef.cpp
|
DVarRef.cpp
|
||||||
DApplyExpr.cpp
|
DApplyExpr.cpp
|
||||||
|
|
||||||
|
|
@ -20,9 +19,10 @@ set(SELF_SRCS
|
||||||
IGCObject_DConstant.cpp
|
IGCObject_DConstant.cpp
|
||||||
IPrintable_DConstant.cpp
|
IPrintable_DConstant.cpp
|
||||||
|
|
||||||
IExpression_DVariable.cpp
|
DVariable.cpp
|
||||||
IGCObject_DVariable.cpp
|
facet/IExpression_DVariable.cpp
|
||||||
IPrintable_DVariable.cpp
|
facet/IGCObject_DVariable.cpp
|
||||||
|
facet/IPrintable_DVariable.cpp
|
||||||
|
|
||||||
IExpression_DVarRef.cpp
|
IExpression_DVarRef.cpp
|
||||||
IGCObject_DVarRef.cpp
|
IGCObject_DVarRef.cpp
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
* [idl/IExpression_DVariable.json5]
|
* [idl/IExpression_DVariable.json5]
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#include "detail/IExpression_DVariable.hpp"
|
#include "variable/IExpression_DVariable.hpp"
|
||||||
|
|
||||||
namespace xo {
|
namespace xo {
|
||||||
namespace scm {
|
namespace scm {
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
* [idl/IGCObject_DVariable.json5]
|
* [idl/IGCObject_DVariable.json5]
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#include "detail/IGCObject_DVariable.hpp"
|
#include "variable/IGCObject_DVariable.hpp"
|
||||||
|
|
||||||
namespace xo {
|
namespace xo {
|
||||||
namespace scm {
|
namespace scm {
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
* [idl/IPrintable_DVariable.json5]
|
* [idl/IPrintable_DVariable.json5]
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#include "detail/IPrintable_DVariable.hpp"
|
#include "variable/IPrintable_DVariable.hpp"
|
||||||
|
|
||||||
namespace xo {
|
namespace xo {
|
||||||
namespace scm {
|
namespace scm {
|
||||||
Loading…
Add table
Add a link
Reference in a new issue