#5657 Added temporary implementation for SerialKey

This commit is contained in:
Jerry (Xinyu Hou) 2016-10-13 14:00:19 +01:00
parent 92680b2877
commit 92a885524b
2 changed files with 62 additions and 2 deletions

View File

@ -0,0 +1,60 @@
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2016 Symless Ltd.
*
* 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/>.
*/
#include "SerialKey.h"
SerialKey::SerialKey(std::string serial) :
m_userLimit(1),
m_warnTime(1),
m_expireTime(1),
m_trial(true)
{
m_userLimit = 1;
m_warnTime = 1;
m_expireTime = 1;
m_trial = true;
}
bool
SerialKey::isValid(unsigned long long currentTime) const
{
return true;
}
bool
SerialKey::isExpiring(unsigned long long currentTime) const
{
return true;
}
bool
SerialKey::isExpired(unsigned long long currentTime) const
{
return true;
}
bool
SerialKey::isTrial() const
{
return true;
}
int
SerialKey::edition() const
{
return 1;
}

View File

@ -1,6 +1,6 @@
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2015 Synergy Seamless Inc.
* Copyright (C) 2016 Symless Ltd.
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -31,7 +31,7 @@ public:
private:
std::string m_name;
std::string m_type;
std::string m_edition;
std::string m_email;
std::string m_company;
int m_userLimit;