Add StoragePath::lockfile path 36/29336/13
authorAleksander Zdyb <a.zdyb@samsung.com>
Mon, 27 Oct 2014 13:44:14 +0000 (14:44 +0100)
committerAleksander Zdyb <a.zdyb@samsung.com>
Tue, 23 Dec 2014 12:55:33 +0000 (13:55 +0100)
Change-Id: I16242dd8da7435661ee65698541e935ea9105cf1

src/common/config/PathConfig.cpp
src/common/config/PathConfig.h

index f2799a1..8dd0491 100644 (file)
@@ -16,6 +16,7 @@
 /**
  * @file        src/common/config/PathConfig.cpp
  * @author      Zofia Abramowska <z.abramowska@samsung.com>
+ * @author      Aleksander Zdyb <a.zdyb@samsung.com>
  * @version     1.0
  * @brief       This file specifies PathConfig namespace containing values of default cynara paths
  */
@@ -52,6 +53,7 @@ const std::string agent(clientPath + "cynara-agent.socket");
 
 namespace StoragePath {
 const std::string dbDir(statePath + "db/");
+const std::string lockFile(statePath);
 } // namespace StoragePath
 
 namespace PluginPath {
index 2f5836a..da5671f 100644 (file)
@@ -16,6 +16,7 @@
 /**
  * @file        src/common/config/PathConfig.h
  * @author      Zofia Abramowska <z.abramowska@samsung.com>
+ * @author      Aleksander Zdyb <a.zdyb@samsung.com>
  * @version     1.0
  * @brief       This file specifies PathConfig namespace containing default cynara paths
  */
@@ -40,6 +41,7 @@ extern const std::string agent;
 
 namespace StoragePath {
 extern const std::string dbDir;
+extern const std::string lockFile;
 } // namespace StoragePath
 
 namespace PluginPath {