Name Date Size #Lines LOC

..--

KyuafileH A D23-Mar-2020274 118

Makefile.am.incH A D23-Mar-20203.9 KiB9078

READMEH A D23-Mar-2020589 129

context.cppH A D23-Mar-20204.5 KiB16068

context.hppH A D23-Mar-20202.6 KiB7724

context_fwd.hppH A D23-Mar-20201.8 KiB446

context_test.cppH A D23-Mar-20203.6 KiB10762

exceptions.cppH A D23-Mar-20202.4 KiB7723

exceptions.hppH A D23-Mar-20202.5 KiB7221

exceptions_test.cppH A D23-Mar-20202.3 KiB6627

metadata.cppH A D16-Jul-202432 KiB1,145618

metadata.hppH A D16-Jul-20245 KiB13675

metadata_fwd.hppH A D23-Mar-20201.8 KiB457

metadata_test.cppH A D16-Jul-202415.5 KiB466360

test_case.cppH A D23-Mar-202010.6 KiB340138

test_case.hppH A D23-Mar-20203.3 KiB9938

test_case_fwd.hppH A D23-Mar-20202 KiB5210

test_case_test.cppH A D16-Jul-20249.3 KiB265183

test_program.cppH A D23-Mar-202014.3 KiB453216

test_program.hppH A D23-Mar-20203.8 KiB11151

test_program_fwd.hppH A D23-Mar-20202 KiB5610

test_program_test.cppH A D16-Jul-202422.8 KiB715500

test_result.cppH A D05-Oct-20245 KiB16987

test_result.hppH A D05-Oct-20243.2 KiB9529

test_result_fwd.hppH A D23-Mar-20202 KiB5413

test_result_test.cppH A D23-Mar-20206.7 KiB186119

types.hppH A D23-Mar-20202.2 KiB6212

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