barrier/src/lib/synergy/ToolArgs.h

34 lines
944 B
C
Raw Normal View History

/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2014 Synergy Si, Inc.
*
* 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.
*
* 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
#include "base/String.h"
class ToolArgs {
public:
ToolArgs();
public:
bool m_printActiveDesktopName;
2015-02-05 14:17:34 +00:00
bool m_loginAuthenticate;
2015-02-06 10:39:58 +00:00
bool m_getPluginList;
bool m_getPluginDir;
2015-02-11 17:28:56 +00:00
bool m_getProfileDir;
bool m_getArch;
};