This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

#5657 Added temporary implementation for SerialKey

  • Loading branch information...
Jerry (Xinyu Hou)
Jerry (Xinyu Hou) committed Oct 13, 2016
1 parent 92680b2 commit 92a885524bfc2d47c6505fffa7c5540a691adae0
Showing with 62 additions and 2 deletions.
  1. +60 −0 src/lib/shared/SerialKey.cpp
  2. +2 −2 src/lib/shared/SerialKey.h
@@ -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;
+}
@@ -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 @@ class SerialKey {
private:
std::string m_name;
- std::string m_type;
+ std::string m_edition;
std::string m_email;
std::string m_company;
int m_userLimit;

0 comments on commit 92a8855

Please sign in to comment.