crl_queue.h 591 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 <crl/common/crl_common_config.h>
  9. #ifdef CRL_FORCE_COMMON_QUEUE
  10. #include <crl/common/crl_common_queue.h>
  11. #elif defined CRL_USE_DISPATCH // CRL_FORCE_COMMON_QUEUE
  12. #include <crl/dispatch/crl_dispatch_queue.h>
  13. #else // CRL_USE_DISPATCH
  14. #include <crl/common/crl_common_queue.h>
  15. #endif // !CRL_FORCE_COMMON_QUEUE && !CRL_USE_DISPATCH