hla: Remove deprecated tick method.

This commit is contained in:
Mathias Froehlich 2012-07-21 12:55:53 +02:00
parent 199419ae62
commit 1f46c79396
2 changed files with 0 additions and 13 deletions

View File

@ -754,16 +754,6 @@ HLAFederate::processMessages()
return true;
}
bool
HLAFederate::tick(const double& minimum, const double& maximum)
{
if (!_rtiFederate.valid()) {
SG_LOG(SG_NETWORK, SG_WARN, "HLA: Accessing unconnected federate!");
return false;
}
return _rtiFederate->processMessages(minimum, maximum);
}
bool
HLAFederate::readObjectModelTemplate(const std::string& objectModel,
HLAFederate::ObjectModelFactory& objectModelFactory)

View File

@ -162,9 +162,6 @@ public:
/// a pending time advance is granted.
bool processMessages();
/// Legacy tick call - deprecated
bool tick(const double& minimum, const double& maximum);
class ObjectModelFactory {
public:
virtual ~ObjectModelFactory()