summaryrefslogtreecommitdiffhomepage
path: root/Tobii EyeX/include/eyex-cpp/Environment.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tobii EyeX/include/eyex-cpp/Environment.hpp')
-rwxr-xr-xTobii EyeX/include/eyex-cpp/Environment.hpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/Tobii EyeX/include/eyex-cpp/Environment.hpp b/Tobii EyeX/include/eyex-cpp/Environment.hpp
deleted file mode 100755
index 5a4a8c8..0000000
--- a/Tobii EyeX/include/eyex-cpp/Environment.hpp
+++ /dev/null
@@ -1,45 +0,0 @@
-/*********************************************************************************************************************
- * Copyright 2013-2014 Tobii Technology AB. All rights reserved.
- * Environment.hpp
- *********************************************************************************************************************/
-
-#if !defined(__TOBII_TX_CLIENT_CPPBINDINGS_ENVIRONMENT__HPP__)
-#define __TOBII_TX_CLIENT_CPPBINDINGS_ENVIRONMENT__HPP__
-
-/*********************************************************************************************************************/
-
-TX_NAMESPACE_BEGIN
-
-/*********************************************************************************************************************/
-
-class Environment
-{
- Environment(
- TX_EYEXCOMPONENTOVERRIDEFLAGS flags,
- TX_LOGGINGMODEL* pLoggingModel,
- TX_THREADINGMODEL* pThreadingModel,
- TX_SCHEDULINGMODEL* pSchedulingModel,
- void* pMemoryModel);
-public:
- virtual ~Environment();
-
- static std::shared_ptr<Environment> Initialize(
- TX_EYEXCOMPONENTOVERRIDEFLAGS flags,
- TX_LOGGINGMODEL* pLoggingModel,
- TX_THREADINGMODEL* pThreadingModel,
- TX_SCHEDULINGMODEL* pSchedulingModel,
- void* pMemoryModel);
-
- TX_EYEXAVAILABILITY GetEyeXAvailability();
- static bool IsInitialized();
-};
-
-/*********************************************************************************************************************/
-
-TX_NAMESPACE_END
-
-/*********************************************************************************************************************/
-
-#endif // !defined(__TOBII_TX_CLIENT_CPPBINDINGS_ENVIRONMENT__HPP__)
-
-/*********************************************************************************************************************/