| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #ifndef BASE_TYPE_H 2 : #define BASE_TYPE_H 3 : 4 : #include <string> 5 : 6 : namespace nicole { 7 : 8 : class Type { 9 : public: 10 0 : virtual ~Type() = default; 11 : 12 : [[nodiscard]] virtual std::string toString() const noexcept = 0; 13 : }; 14 : 15 : } 16 : 17 : #endif |
| Generated by: LCOV version 2.0-1 |