xo-reader2: refactor: move ExpectFormalArgSsm support -> subdir
This commit is contained in:
parent
d5368c55e9
commit
bc5d96223d
11 changed files with 18 additions and 25 deletions
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/reader2",
|
||||
output_cpp_dir: "src/reader2/facet",
|
||||
output_hpp_dir: "include/xo/reader2",
|
||||
output_impl_subdir: "ssm",
|
||||
output_impl_subdir: "expect_formal_arg",
|
||||
includes: [ "<xo/printable2/Printable.hpp>",
|
||||
"<xo/printable2/detail/IPrintable_Xfer.hpp>" ],
|
||||
local_types: [],
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
mode: "implementation",
|
||||
output_cpp_dir: "src/reader2",
|
||||
output_cpp_dir: "src/reader2/facet",
|
||||
output_hpp_dir: "include/xo/reader2",
|
||||
output_impl_subdir: "ssm",
|
||||
output_impl_subdir: "expect_formal_arg",
|
||||
includes: [ "\"SyntaxStateMachine.hpp\"",
|
||||
"\"ssm/ISyntaxStateMachine_Xfer.hpp\"" ],
|
||||
local_types: [ ],
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "DExpectFormalArgSsm.hpp"
|
||||
#include "ssm/ISyntaxStateMachine_DExpectFormalArgSsm.hpp"
|
||||
#include "ssm/IPrintable_DExpectFormalArgSsm.hpp"
|
||||
#include "expect_formal_arg/DExpectFormalArgSsm.hpp"
|
||||
#include "expect_formal_arg/ISyntaxStateMachine_DExpectFormalArgSsm.hpp"
|
||||
#include "expect_formal_arg/IPrintable_DExpectFormalArgSsm.hpp"
|
||||
|
||||
/* end ExpectFormalArgSsm.hpp */
|
||||
|
|
|
|||
|
|
@ -57,8 +57,8 @@ set(SELF_SRCS
|
|||
IPrintable_DExpectFormalArglistSsm.cpp
|
||||
|
||||
DExpectFormalArgSsm.cpp
|
||||
ISyntaxStateMachine_DExpectFormalArgSsm.cpp
|
||||
IPrintable_DExpectFormalArgSsm.cpp
|
||||
facet/ISyntaxStateMachine_DExpectFormalArgSsm.cpp
|
||||
facet/IPrintable_DExpectFormalArgSsm.cpp
|
||||
|
||||
DExpectSymbolSsm.cpp
|
||||
ISyntaxStateMachine_DExpectSymbolSsm.cpp
|
||||
|
|
|
|||
|
|
@ -3,16 +3,9 @@
|
|||
* @author Roland Conybeare, Jan 2026
|
||||
**/
|
||||
|
||||
#include "DExpectFormalArgSsm.hpp"
|
||||
#include "ssm/ISyntaxStateMachine_DExpectFormalArgSsm.hpp"
|
||||
#include "DExpectSymbolSsm.hpp"
|
||||
#include "ssm/ISyntaxStateMachine_DExpectSymbolSsm.hpp"
|
||||
#include "DExpectTypeSsm.hpp"
|
||||
#include "ssm/ISyntaxStateMachine_DExpectTypeSsm.hpp"
|
||||
|
||||
#ifdef NOT_YET
|
||||
#include "xo/expression/Variable.hpp"
|
||||
#endif
|
||||
#include "ExpectFormalArgSsm.hpp"
|
||||
#include "ExpectSymbolSsm.hpp"
|
||||
#include "ExpectTypeSsm.hpp"
|
||||
|
||||
namespace xo {
|
||||
using xo::scm::DVariable;
|
||||
|
|
|
|||
|
|
@ -3,10 +3,10 @@
|
|||
* @author Roland Conybeare, Jan 2026
|
||||
*/
|
||||
|
||||
#include "DExpectFormalArglistSsm.hpp"
|
||||
#include "ssm/ISyntaxStateMachine_DExpectFormalArglistSsm.hpp"
|
||||
#include "DExpectFormalArgSsm.hpp"
|
||||
#include "ssm/ISyntaxStateMachine_DExpectFormalArgSsm.hpp"
|
||||
#include "ExpectFormalArglistSsm.hpp"
|
||||
//#include "ssm/ISyntaxStateMachine_DExpectFormalArglistSsm.hpp"
|
||||
#include "ExpectFormalArgSsm.hpp"
|
||||
//#include "ssm/ISyntaxStateMachine_DExpectFormalArgSsm.hpp"
|
||||
#include <xo/expression2/DVariable.hpp>
|
||||
#include <xo/expression2/detail/IGCObject_DVariable.hpp>
|
||||
#include <xo/printable2/Printable.hpp>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
* [idl/IPrintable_DExpectFormalArgSsm.json5]
|
||||
**/
|
||||
|
||||
#include "ssm/IPrintable_DExpectFormalArgSsm.hpp"
|
||||
#include "expect_formal_arg/IPrintable_DExpectFormalArgSsm.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace scm {
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
* [idl/ISyntaxStateMachine_DExpectFormalArgSsm.json5]
|
||||
**/
|
||||
|
||||
#include "ssm/ISyntaxStateMachine_DExpectFormalArgSsm.hpp"
|
||||
#include "expect_formal_arg/ISyntaxStateMachine_DExpectFormalArgSsm.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace scm {
|
||||
Loading…
Add table
Add a link
Reference in a new issue