format_string.cpp 372 B

123456789101112131415161718
  1. #include "format_string.h"
  2. namespace NYT {
  3. ////////////////////////////////////////////////////////////////////////////////
  4. TRuntimeFormat::TRuntimeFormat(TStringBuf fmt)
  5. : Format_(fmt)
  6. { }
  7. TStringBuf TRuntimeFormat::Get() const noexcept
  8. {
  9. return Format_;
  10. }
  11. ////////////////////////////////////////////////////////////////////////////////
  12. } // namespace NYT