added boo namespace

This commit is contained in:
Jack Andersen
2015-04-29 00:24:39 -10:00
parent 8442c492d4
commit d4b1211c24
31 changed files with 197 additions and 57 deletions

View File

@@ -7,6 +7,9 @@
#include <unistd.h>
#include <boo.hpp>
namespace boo
{
class CDolphinSmashAdapterCallback : public IDolphinSmashAdapterCallback
{
void controllerConnected(unsigned idx, EDolphinControllerType type)
@@ -48,12 +51,14 @@ public:
}
};
}
int main(int argc, char** argv)
{
CTestDeviceFinder finder;
boo::CTestDeviceFinder finder;
finder.startScanning();
IGraphicsContext* ctx = new CGraphicsContext;
boo::IGraphicsContext* ctx = new boo::CGraphicsContext;
if (ctx->create())
{