| 39 | }; |
| 40 | |
| 41 | class String : public cripts::StringViewMixin<String> |
| 42 | { |
| 43 | using super_type = cripts::StringViewMixin<String>; |
| 44 | using self_type = String; |
| 45 | |
| 46 | public: |
| 47 | virtual ~String() = default; |
| 48 | |
| 49 | operator cripts::string_view() const { return GetSV(); } |
| 50 | |
| 51 | self_type & |
| 52 | operator=(const cripts::string_view str) override |
| 53 | { |
| 54 | _setSV(str); |
| 55 | |
| 56 | return *this; |
| 57 | } |
| 58 | |
| 59 | using super_type::StringViewMixin; |
| 60 | |
| 61 | }; // Class cripts::Certs::String |
| 62 | |
| 63 | } // namespace cripts::Certs |
| 64 |
no outgoing calls
no test coverage detected