FileRequest.cpp 283 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2022, Lucas Chollet <lucas.chollet@free.fr>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include "FileRequest.h"
  7. namespace Web {
  8. FileRequest::FileRequest(String path)
  9. : m_path(move(path))
  10. {
  11. }
  12. String FileRequest::path() const
  13. {
  14. return m_path;
  15. }
  16. }