expected.h 395 B

1234567891011121314151617
  1. // This file is part of Desktop App Toolkit,
  2. // a set of libraries for developing nice desktop applications.
  3. //
  4. // For license and copyright information please follow this link:
  5. // https://github.com/desktop-app/legal/blob/master/LEGAL
  6. //
  7. #pragma once
  8. #include <tl/expected.hpp>
  9. namespace base {
  10. using ::tl::expected;
  11. using ::tl::unexpected;
  12. using ::tl::make_unexpected;
  13. } // namespace base