| 28 | public: |
| 29 | template <typename SectionNameT, typename ContentT> |
| 30 | String(StringType type, std::uint64_t fileOffset, SectionNameT&& sectionName, ContentT&& content) |
| 31 | : type(type), fileOffset(fileOffset), sectionName(std::forward<SectionNameT>(sectionName)), content(std::forward<ContentT>(content)) {} |
| 32 | String(const String&) = default; |
| 33 | String(String&&) noexcept = default; |
| 34 | ~String() = default; |
no outgoing calls
no test coverage detected