Covellite++  Version: 2.3.0 Revision: 2580 Platform: x64 Build: 15:23 16.10.2020
Кроссплатформенный фреймворк для разработки приложений на С++
DxCheck.hpp
1 
2 #pragma once
3 #include <alicorn\std\check-proxy.hpp>
4 #include <alicorn\platform.lib.hpp>
5 
6 namespace covellite
7 {
8 
9 namespace api
10 {
11 
12 namespace renderer
13 {
14 
30 class DxCheck final :
31  public ::alicorn::extension::std::CheckProxy<DxCheck>
32 {
33 public:
34  static bool IsSuccessfull(long);
35  static ::std::string GetMessageText(long);
36 };
37 
38 } // namespace renderer
39 
40 } // namespace api
41 
42 } // namespace covellite
43 
59 #define DX_CHECK \
60  CHECK_PROXY(::covellite::api::renderer::DxCheck)
covellite::api::renderer::DxCheck
Класс входит в проект Covellite.Api Вспомогательный класс логики работы макроса DX_CHECK.
Definition: DxCheck.hpp:32