Ref T437, renamed CFsuipc functions to align with FSUIPC code

This commit is contained in:
Klaus Basan
2018-11-22 19:07:00 +01:00
parent 410d77330f
commit d6fad99474
8 changed files with 42 additions and 40 deletions

View File

@@ -30,16 +30,16 @@ namespace BlackSimPlugin
CFsuipc::~CFsuipc()
{ }
bool CFsuipc::connect(bool force)
bool CFsuipc::open(bool force)
{
Q_UNUSED(force);
return false;
}
void CFsuipc::disconnect()
void CFsuipc::close()
{ }
bool CFsuipc::isConnected() const
bool CFsuipc::isOpened() const
{
return false;
}