summaryrefslogtreecommitdiff
path: root/wearable_src/Systeminfo/ISysteminfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'wearable_src/Systeminfo/ISysteminfo.h')
-rwxr-xr-xwearable_src/Systeminfo/ISysteminfo.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/wearable_src/Systeminfo/ISysteminfo.h b/wearable_src/Systeminfo/ISysteminfo.h
new file mode 100755
index 0000000..2a1fca6
--- /dev/null
+++ b/wearable_src/Systeminfo/ISysteminfo.h
@@ -0,0 +1,61 @@
+//
+// Tizen Web Device API
+// Copyright (c) 2012 Samsung Electronics Co., Ltd.
+//
+// Licensed under the Apache License, Version 2.0 (the License);
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#ifndef WRTPLUGINS_API_ISYSTEMINFO_H_
+#define WRTPLUGINS_API_ISYSTEMINFO_H_
+
+#include <dpl/shared_ptr.h>
+#include <Commons/ThreadPool.h>
+
+#include "BaseProperties.h"
+#include "EventGetSysteminfo.h"
+#include "EventWatchSysteminfo.h"
+
+namespace DeviceAPI {
+namespace Systeminfo {
+
+class EventGetSysteminfo;
+class EventWatchSysteminfo;
+typedef DPL::SharedPtr<EventGetSysteminfo> EventGetSysteminfoPtr;
+typedef DPL::SharedPtr<EventWatchSysteminfo> EventWatchSysteminfoPtr;
+
+class ISysteminfo :
+ public WrtDeviceApis::Commons::EventRequestReceiver<EventGetSysteminfo>,
+ public WrtDeviceApis::Commons::EventRequestReceiver<EventWatchSysteminfo>
+{
+ public:
+ virtual ~ISysteminfo();
+
+ virtual DeviceCapabilitiesPropertiesPtr getCapabilities() = 0;
+ virtual void get(const EventGetSysteminfoPtr& event) = 0;
+ virtual void watch(const EventWatchSysteminfoPtr& event) = 0;
+ virtual BasePropertyPtr getBasePropertyPtr(JSContextRef context, JSValueRef property) = 0;
+ virtual void clearWatch(const unsigned long id) = 0;
+
+ protected:
+ ISysteminfo();
+
+ virtual void OnRequestReceived(const EventGetSysteminfoPtr& event) = 0;
+ virtual void OnRequestReceived(const EventWatchSysteminfoPtr& event) = 0;
+};
+
+typedef DPL::SharedPtr<ISysteminfo> ISysteminfoPtr;
+
+}
+}
+
+#endif