root/ConcordanceConfig.hpp

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /* -*- coding: utf-8; mode: c++; -*-
   2  * Concordance to A. S. Pushkin's Works - Daemon Configuration
   3  * $Id: ConcordanceConfig.hpp 36 2014-06-02 13:26:38Z isao $
   4  * Copyright (C) 2014, isao yasuda
   5  */
   6 
   7 #ifndef DAEMON_CONFIG
   8 #define DAEMON_CONFIG
   9 
  10 #include <csignal>
  11 #include <unistd.h>
  12 #include <sys/stat.h>
  13 
  14 // daemon configuration
  15 static const char* LOGFILE = "/var/pushkin_concordance/daemon.log";
  16 static const char* CONFIG  = "/var/pushkin_concordance/concordance.conf";
  17 static const char* CLPIDF  = "/var/pushkin_concordance/CorpusLoader.pid";
  18 static const char* WTPIDF  = "/var/pushkin_concordance/WordTreeBuilder.pid";
  19 
  20 #endif

/* [previous][next][first][last][top][bottom][index][help] */