| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #ifndef SYMBOL_H 2 : #define SYMBOL_H 3 : 4 : #include <string> 5 : namespace nicole { 6 : 7 : class Symbol { 8 : protected: 9 : std::string id_; 10 : 11 : public: 12 0 : explicit Symbol(const std::string& id) noexcept : id_{id} {} 13 : 14 0 : [[nodiscard]] const std::string& id() const noexcept { return id_; } 15 : }; 16 : 17 : } 18 : 19 : #endif |
| Generated by: LCOV version 2.0-1 |