1
0
Fork 0

Move the flipflop implementations into the correct namespace

This commit is contained in:
Torsten Dreyer 2010-06-25 21:17:13 +02:00
parent 0a50c16052
commit 610777ac53

View file

@ -24,7 +24,7 @@
#include "inputvalue.hxx"
#include <Main/fg_props.hxx>
using namespace FGXMLAutopilot;
namespace FGXMLAutopilot {
/**
* @brief Flip flop implementation for a RS flip flop with dominant RESET
@ -279,6 +279,10 @@ public:
virtual bool getState( double dt, DigitalComponent::InputMap input, bool & q );
};
} // namespace
using namespace FGXMLAutopilot;
bool MonoFlopImplementation::configure( const std::string & nodeName, SGPropertyNode_ptr configNode )
{
if( JKFlipFlopImplementation::configure( nodeName, configNode ) )