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