barrier/src/lib/arch/ArchDaemonNone.h

51 lines
1.7 KiB
C
Raw Normal View History

2012-06-10 16:50:54 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2012 Synergy Si Ltd.
* Copyright (C) 2002 Chris Schoeneman
2012-06-10 16:50:54 +00:00
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* found in the file LICENSE that should have accompanied this file.
2012-06-10 16:50:54 +00:00
*
* This package 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/>.
*/
#pragma once
2012-06-10 16:50:54 +00:00
#include "arch/IArchDaemon.h"
2012-06-10 16:50:54 +00:00
2014-11-11 13:51:47 +00:00
#define ARCH_DAEMON ArchDaemonNone
2012-06-10 16:50:54 +00:00
//! Dummy implementation of IArchDaemon
/*!
This class implements IArchDaemon for a platform that does not have
daemons. The install and uninstall functions do nothing, the query
functions return false, and \c daemonize() simply calls the passed
function and returns its result.
*/
2014-11-11 13:51:47 +00:00
class ArchDaemonNone : public IArchDaemon {
2012-06-10 16:50:54 +00:00
public:
2014-11-11 13:51:47 +00:00
ArchDaemonNone();
virtual ~ArchDaemonNone();
2012-06-10 16:50:54 +00:00
// IArchDaemon overrides
virtual void installDaemon(const char* name,
const char* description,
const char* pathname,
const char* commandLine,
2014-03-17 16:30:27 +00:00
const char* dependencies);
virtual void uninstallDaemon(const char* name);
2012-06-10 16:50:54 +00:00
virtual int daemonize(const char* name, DaemonFunc func);
2014-03-17 16:30:27 +00:00
virtual bool canInstallDaemon(const char* name);
virtual bool isDaemonInstalled(const char* name);
2012-06-10 16:50:54 +00:00
virtual void installDaemon();
virtual void uninstallDaemon();
virtual std::string commandLine() const;
};