c4073d711ae917ed1c59a3b95161cf1817e47bd9
[framework/web/wrt-plugins-common.git] / src / modules / API / Filesystem / IManager.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 #include <Filesystem/Manager.h>
17 #include <Commons/ThreadPool.h>
18 #include "IManager.h"
19
20 namespace WrtDeviceApis {
21 namespace Filesystem {
22 namespace Api {
23
24 IManager& IManager::getInstance()
25 {
26     static Manager instance;
27     return instance;
28 }
29
30 IManager::IManager() :
31     Commons::EventRequestReceiver<EventResolve>(
32         Commons::ThreadEnum::FILESYSTEM_THREAD),
33     Commons::EventRequestReceiver<EventCopy>(
34         Commons::ThreadEnum::FILESYSTEM_THREAD),
35     Commons::EventRequestReceiver<EventMove>(
36         Commons::ThreadEnum::FILESYSTEM_THREAD),
37     Commons::EventRequestReceiver<EventRemove>(
38         Commons::ThreadEnum::FILESYSTEM_THREAD),
39     Commons::EventRequestReceiver<EventFind>(
40         Commons::ThreadEnum::FILESYSTEM_THREAD)
41 {
42 }
43
44 IManager::~IManager()
45 {
46 }
47
48 } // API
49 } // Filesystem
50 } // WrtDeviceApis