mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
17 lines
267 B
C++
17 lines
267 B
C++
#ifndef NW4R_DB_ASSERT_H
|
|
#define NW4R_DB_ASSERT_H
|
|
|
|
#include "nw4r/db/db_console.h"
|
|
|
|
namespace nw4r {
|
|
namespace db {
|
|
|
|
typedef detail::ConsoleHead *ConsoleHandle;
|
|
|
|
ConsoleHandle Assertion_SetConsole(ConsoleHandle handle);
|
|
|
|
} // namespace db
|
|
} // namespace nw4r
|
|
|
|
#endif
|