NameDateSize

..19-Jan-202430

context.cppH A D22-Jun-20214.5 KiB

context.hppH A D22-Jun-20212.6 KiB

context_fwd.hppH A D22-Jun-20211.8 KiB

context_test.cppH A D22-Jun-20213.6 KiB

exceptions.cppH A D22-Jun-20212.4 KiB

exceptions.hppH A D22-Jun-20212.5 KiB

exceptions_test.cppH A D22-Jun-20212.3 KiB

KyuafileH A D22-Jun-2021274

Makefile.am.incH A D22-Jun-20213.9 KiB

metadata.cppH A D22-Jun-202129.8 KiB

metadata.hppH A D22-Jun-20214.8 KiB

metadata_fwd.hppH A D22-Jun-20211.8 KiB

metadata_test.cppH A D22-Jun-202115.3 KiB

READMEH A D22-Jun-2021589

test_case.cppH A D22-Jun-202110.6 KiB

test_case.hppH A D22-Jun-20213.3 KiB

test_case_fwd.hppH A D22-Jun-20212 KiB

test_case_test.cppH A D22-Jun-20219.2 KiB

test_program.cppH A D22-Jun-202114.3 KiB

test_program.hppH A D22-Jun-20213.8 KiB

test_program_fwd.hppH A D22-Jun-20212 KiB

test_program_test.cppH A D22-Jun-202122.6 KiB

test_result.cppH A D22-Jun-20214.3 KiB

test_result.hppH A D22-Jun-20212.9 KiB

test_result_fwd.hppH A D22-Jun-20212 KiB

test_result_test.cppH A D22-Jun-20216.7 KiB

types.hppH A D22-Jun-20212.2 KiB

README

1This directory contains the classes that form the data model of Kyua.
2
3The classes in this directory are intended to be pure data types without
4any complex logic.  As such, they are simple containers and support the
5common operations you would expect from them: in particular, comparisons
6and formatting for debugging purposes.
7
8All the classes in the data model have to have an on-disk representation
9provided by the store module; if they don't, they don't belong in the
10model.  Some of these classes may also have special behavior at run-time,
11and this is provided by the engine module.
12