94 lines
1.7 KiB
C++
94 lines
1.7 KiB
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
*
|
|
* 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 COPYING 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.
|
|
*/
|
|
|
|
#include "XNetwork.h"
|
|
|
|
//
|
|
// XNetworkUnavailable
|
|
//
|
|
|
|
CString
|
|
XNetworkUnavailable::getWhat() const throw()
|
|
{
|
|
return format("XNetworkUnavailable", "network library is not available");
|
|
}
|
|
|
|
|
|
//
|
|
// XNetworkFailed
|
|
//
|
|
|
|
CString
|
|
XNetworkFailed::getWhat() const throw()
|
|
{
|
|
return format("XNetworkFailed", "cannot initialize network library");
|
|
}
|
|
|
|
|
|
//
|
|
// XNetworkVersion
|
|
//
|
|
|
|
XNetworkVersion::XNetworkVersion(int major, int minor) throw() :
|
|
m_major(major),
|
|
m_minor(minor)
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
int
|
|
XNetworkVersion::getMajor() const throw()
|
|
{
|
|
return m_major;
|
|
}
|
|
|
|
int
|
|
XNetworkVersion::getMinor() const throw()
|
|
{
|
|
return m_minor;
|
|
}
|
|
|
|
CString
|
|
XNetworkVersion::getWhat() const throw()
|
|
{
|
|
return format("XNetworkVersion",
|
|
"unsupported network version %{1}.%{2}",
|
|
CStringUtil::print("%d", m_major).c_str(),
|
|
CStringUtil::print("%d", m_minor).c_str());
|
|
}
|
|
|
|
|
|
//
|
|
// XNetworkFunctionUnavailable
|
|
//
|
|
|
|
XNetworkFunctionUnavailable::XNetworkFunctionUnavailable(
|
|
const char* name) throw()
|
|
{
|
|
try {
|
|
m_name = name;
|
|
}
|
|
catch (...) {
|
|
// ignore
|
|
}
|
|
}
|
|
|
|
CString
|
|
XNetworkFunctionUnavailable::getWhat() const throw()
|
|
{
|
|
return format("XNetworkFunctionUnavailable",
|
|
"missing network function %{1}",
|
|
m_name.c_str());
|
|
}
|