summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/IOS/TestAppIOS.cpp
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-02-16 06:48:41 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-02-16 06:48:41 +0000
commite33d94fecd272db4bf542541c069e9e2c168c1d5 (patch)
treec4c33fe97b817ed67fc505059a6323336660311f /Tests/TestApp/src/IOS/TestAppIOS.cpp
parentUpdated samples (fixed linux/max build error) (diff)
downloadDiligentEngine-e33d94fecd272db4bf542541c069e9e2c168c1d5.tar.gz
DiligentEngine-e33d94fecd272db4bf542541c069e9e2c168c1d5.zip
Moved NativeApp to Diligent namespace
Diffstat (limited to 'Tests/TestApp/src/IOS/TestAppIOS.cpp')
-rw-r--r--Tests/TestApp/src/IOS/TestAppIOS.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/TestApp/src/IOS/TestAppIOS.cpp b/Tests/TestApp/src/IOS/TestAppIOS.cpp
index d71ca5a..70bb6de 100644
--- a/Tests/TestApp/src/IOS/TestAppIOS.cpp
+++ b/Tests/TestApp/src/IOS/TestAppIOS.cpp
@@ -24,7 +24,8 @@
#include <queue>
#include "TestApp.h"
-using namespace Diligent;
+namespace Diligent
+{
class TestAppIOS final : public TestApp
{
@@ -47,3 +48,5 @@ NativeAppBase* CreateApplication()
{
return new TestAppIOS;
}
+
+}