| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /*************************************** | ||
| 2 | Auteur : Pierre Aubert | ||
| 3 | Mail : pierre.aubert@lapp.in2p3.fr | ||
| 4 | Licence : CeCILL-C | ||
| 5 | ****************************************/ | ||
| 6 | |||
| 7 | |||
| 8 | #include "test_library.h" | ||
| 9 | |||
| 10 | ///Test print function | ||
| 11 | /** @param str : string to be printed | ||
| 12 | */ | ||
| 13 | 1 | void print_arch(const std::string& str){ | |
| 14 | 1 | std::cout << str << std::endl; | |
| 15 | 1 | } | |
| 16 | |||
| 17 | ///Add values | ||
| 18 | /** @param a : value | ||
| 19 | * @param b : value | ||
| 20 | * @return a + b | ||
| 21 | */ | ||
| 22 | 1 | float addValue(float a, float b){ | |
| 23 | 1 | return a + b; | |
| 24 | } | ||
| 25 | |||
| 26 | |||
| 27 |