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 std::string Waypt::ident() const
{ {
return ""; return "";

View file

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