tizen 2.3.1 release
[framework/web/mobile/wrt-plugins-tizen.git] / src / Exif / plugin_config.cpp
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #include "plugin_config.h"
19
20 #include <iostream>
21 #include <map>
22
23 #include <Commons/FunctionDefinition.h>
24 #include <Commons/FunctionDeclaration.h>
25 #include <Commons/Exception.h>
26
27
28 using namespace WrtDeviceApis::Commons;
29
30 namespace DeviceAPI {
31 namespace Exif {
32
33 static FunctionMapping createExifFunctions();
34
35 static FunctionMapping ExifFunctions =
36     createExifFunctions();
37
38 #pragma GCC visibility push(default)
39 DEFINE_FUNCTION_GETTER(Exif, ExifFunctions);
40 #pragma GCC visibility pop
41
42 static FunctionMapping createExifFunctions()
43 {
44     /**
45      * Functions
46      */
47     FunctionMapping exifMapping;
48
49     return exifMapping;
50 }
51
52 }
53 }