Honeycomb  0.1
Component-Model Framework
Debug.h
Go to the documentation of this file.
1 // Honeycomb, Copyright (C) 2013 Daniel Carter. Distributed under the Boost Software License v1.0.
2 #pragma once
3 
5 namespace honey
6 {
7 
8 class String;
9 
10 namespace platform
11 {
12 
13 class Debug
14 {
15 public:
16  static void print(const String& str);
17  static void assertPrint(const String& expr, const String& file, int line, const String& msg);
18 };
19 
20 } }
Global Honeycomb namespace.