72773e8b2f5e051d77ab2913b7287f8be6a00cbe
[platform/framework/web/web-provider.git] / src / API / WebProviderDB.h
1 /*
2  * Copyright (c) 2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 /**
17  * @file    WebProviderDB.h 
18  * @author  Yunchan Cho (yunchan.cho@samsung.com)
19  */
20 #ifndef LIVEBOX_DB_H
21 #define LIVEBOX_DB_H
22
23 #include <string>
24 #include "SqliteDB.h"
25
26 const std::string dbPath("/opt/dbspace/.web_provider.db");
27
28 class WebProviderDB : public SqliteDB {
29     public:
30         WebProviderDB() : SqliteDB (dbPath) {};
31         ~WebProviderDB() {};
32 };
33
34 #endif //LIVEBOX_DB_H