blob: e21bfb301280d4dab9d391967d1fdff4025fbc3e [file] [log] [blame]
Nik Dewallybc9e1942024-07-02 17:00:15 +01001#####################################
2'tfz-cpp/boilerplate'-directory guide
3#####################################
Karl Zhang3de5ab12021-05-31 11:45:48 +08004
5************
6Introduction
7************
8
9This directory contains the C++ header and code files to work with the
Nik Dewallybc9e1942024-07-02 17:00:15 +010010customizable, "boilerplate" code snippets in the ``tf_fuzz/lib``
Karl Zhang3de5ab12021-05-31 11:45:48 +080011directory. Mostly what this code does is read these code snippets into an
12STL ``vector`` of, essentially, named strings.
13
Nik Dewallybc9e1942024-07-02 17:00:15 +010014**************************************************
15``tf_fuzz/tfz-cpp/boilerplate`` directory contents
16**************************************************
Karl Zhang3de5ab12021-05-31 11:45:48 +080017.. code-block:: bash
18
19 boilerplate.cpp boilerplate.hpp
20
21This is currently implemented as a vector of strings, with a parallel vector
22of ``const int`` array-index names. (In the future, it may make sense to
23manage the boilerplate code in a C++ STL ``map``-type container.)
24
25--------------
26
27*Copyright (c) 2020, Arm Limited. All rights reserved.*