Move nested struct SimConnectObject into proper class

refs #229
This commit is contained in:
Roland Winklmeier
2014-05-05 00:26:56 +02:00
committed by Klaus Basan
parent f509e600b4
commit 9bc0226fd1
4 changed files with 127 additions and 27 deletions

View File

@@ -0,0 +1,22 @@
/* Copyright (C) 2013 VATSIM Community / contributors
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "simconnect_object.h"
#include "blackcore/interpolator_linear.h"
using namespace BlackCore;
namespace BlackSimPlugin
{
namespace Fsx
{
CSimConnectObject::CSimConnectObject() :
m_interpolator(new CInterpolatorLinear()),
m_requestId(-1),
m_objectId(-1)
{
}
}
}