File: VpnControlDaemonApplication.h

package info (click to toggle)
l2tp-ipsec-vpn-daemon 0.9.9-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 176 kB
  • sloc: cpp: 500; sh: 239; xml: 144; makefile: 106
file content (52 lines) | stat: -rw-r--r-- 1,504 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * $Id: VpnControlDaemonApplication.h 10 2010-09-17 09:13:01Z werner $
 *
 * File:   VpnControlDaemonApplication.h
 * Author: Werner Jaeger
 *
 * Created on August 25, 2010, 4:57 PM
 *
 * Copyright 2010 Werner Jaeger.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <QCoreApplication>

#ifndef VPNCONTROLDAEMONAPPLICATION_H
#define	VPNCONTROLDAEMONAPPLICATION_H

class VpnControlDaemon;

class VpnControlDaemonApplication : public QCoreApplication
{
   Q_OBJECT

public:
   VpnControlDaemonApplication(int iArgc, char** ppArgv);
   virtual ~VpnControlDaemonApplication();

   int daemonize() const;

private:
   VpnControlDaemonApplication(const VpnControlDaemonApplication& orig);
   VpnControlDaemonApplication& operator=(const VpnControlDaemonApplication& orig);

   static bool createPidFile();

   VpnControlDaemon* const m_pDaemon;
};

#endif	/* VPNCONTROLDAEMONAPPLICATION_H */