mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
24 lines
394 B
C++
24 lines
394 B
C++
/*
|
|
* Copyright 2010-2011 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#ifndef __BX_H__
|
|
#define __BX_H__
|
|
|
|
#include "platform.h"
|
|
#include "macros.h"
|
|
|
|
namespace bx
|
|
{
|
|
}// namespace bx
|
|
|
|
#ifndef BX_NAMESPACE
|
|
# define BX_NAMESPACE 0
|
|
#elif BX_NAMESPACE
|
|
using namespace bx;
|
|
#endif // BX_NAMESPACE
|
|
|
|
#endif // __BX_H__
|
|
|