1
0
Fork 0

Anchor flight gear::Waypt's destructor, and make it virtual.

This commit is contained in:
James Turner 2011-10-24 18:21:50 +01:00
parent fd06e568ea
commit 9bd4ba6eb0
2 changed files with 6 additions and 0 deletions

View file

@ -65,6 +65,10 @@ Waypt::Waypt(Route* aOwner) :
{
}
Waypt::~Waypt()
{
}
std::string Waypt::ident() const
{
return "";

View file

@ -85,6 +85,8 @@ typedef enum {
class Waypt : public SGReferenced
{
public:
virtual ~Waypt();
Route* owner() const
{ return _owner; }