ores.cpp
Table of Contents
This page is the node for the ores.cpp technical space in the codegen
physical-space address graph. Its title is its MASD address; it gathers the
facets generated for this technical space. Each facet is its own document,
linked from the table below. Codegen traverses this graph (root → technical
space → facet → archetype) to resolve which archetypes an entity generates.
Summary
The C++ projection: the value type and its companions, tabular presentation, the persistence triplet, the Qt ensemble, an entity's NATS surface, the component-service scaffold, the new-component skeleton, and standalone model formats (enums, field-groups). Entity-shaped facets are driven by the entity org-models; component-shaped facets by the component manifest.
Shared conventions
{{{cpp_license}}}triple-stache injects the licence header.- Headers guard with
full_name_upper-derived macros and export via the component's export macro header. - Column loops dispatch on per-field type flags (
is_string,is_boolean,is_timestamp, …);{{^last}}places commas.
Facets
Facets in this technical space — each links to its own node doc. Generated; do not edit by hand.
| Facet | Archetypes | Description |
|---|---|---|
| ores.cpp.component | 6 | Per-component C++ scaffolding: export, main header, stub domain type, test main. |
| ores.cpp.domain | 7 | Domain types: class, JSON I/O, table I/O. |
| ores.cpp.enum | 1 | C++ enum types. |
| ores.cpp.field-group | 1 | C++ field-group headers. |
| ores.cpp.generator | 2 | Fake-data generators for testing. |
| ores.cpp.nats-eventing | 1 | NATS changed-event publishers. |
| ores.cpp.nats-event-registrar | 2 | Per-entity NATS event-mapping registrar pair wiring an entity's Postgres channel to its changed-event pipeline. |
| ores.cpp.nats-handler | 1 | NATS subscription handlers. |
| ores.cpp.nats-sub-registrar | 2 | Per-entity NATS sub-registrar pair wiring an entity's subjects to its handler. |
| ores.cpp.protocol | 1 | Protocol (de)serialisation. |
| ores.cpp.qt | 12 | Qt UI: windows, dialogs, controllers, client models. |
| ores.cpp.repository | 6 | Repository layer: entity, mapper, CRUD. |
| ores.cpp.service | 2 | C++ service application classes. |
| ores.cpp.service-app | 12 | Service-application C++ scaffold: application, host, config options/parser, main. |
See also
- Parent: the
oresphysical-space root.