Honeycomb  0.1
Component-Model Framework
Debug.h
Go to the documentation of this file.
1 // Honeycomb, Copyright (C) 2015 NewGamePlus Inc. Distributed under the Boost Software License v1.0.
2 #pragma once
3 
5 namespace honey
6 {
7 
8 class String;
9 
10 namespace debug { namespace platform
11 {
12 
13 void print(const String& str);
14 void print(const char* str);
15 
16 void assertFail(const char* expr, const char* func, const char* file, int line, const String& msg);
17 void assertFail(const char* expr, const char* func, const char* file, int line, const char* msg);
18 
19 } } }
Level debug(nullptr,"debug")
Low-level information for debugging purposes.
Definition: Log.h:26
Global Honeycomb namespace.