/*
 * This file is part of Wakanda software, licensed by 4D under
 *  ( i ) the GNU General Public License version 3 ( GNU GPL v3 ), or
 *  ( ii ) the Affero General Public License version 3 ( AGPL v3 ) or
 *  ( iii ) a commercial license.
 * This file remains the exclusive property of 4D and/or its licensors
 * and is protected by national and international legislations.
 * In any event, Licensee's compliance with the terms and conditions
 * of the applicable license constitutes a prerequisite to any use of this file.
 * Except as otherwise expressly stated in the applicable license,
 * such license does not include any other license or rights on this file,
 * 4D's and/or its licensors' trademarks and/or other proprietary rights.
 * Consequently, no title, copyright or other proprietary rights
 * other than those specified in the applicable license is granted.
 */

/**
 * \file    common_process.h
 */

#ifndef _COMMON_PROCESS_H_
#define _COMMON_PROCESS_H_

#include <string>

const std::string kStorageName("master-shared-storage");
const std::string kChildName("child");
const std::string kChildCountKey("child-count");
const std::string kChildNameKey("child-names");

extern std::string gExecutablePath;

#endif // _COMMON_PROCESS_H_
