Skip to content

Commit

Permalink
FULLPIPE: Add another destructor stub
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 9, 2014
1 parent e1b95be commit cb1150c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions engines/fullpipe/motion.cpp
Expand Up @@ -1991,6 +1991,11 @@ MovGraphLink::MovGraphLink() {
_objtype = kObjTypeMovGraphLink;
}

MovGraphLink::~MovGraphLink() {
warning("STUB: MovGraphLink::~MovGraphLink()");
}


bool MovGraphLink::load(MfcArchive &file) {
debug(5, "MovGraphLink::load()");

Expand Down
2 changes: 2 additions & 0 deletions engines/fullpipe/motion.h
Expand Up @@ -289,6 +289,8 @@ class MovGraphLink : public CObject {

public:
MovGraphLink();
virtual ~MovGraphLink();

virtual bool load(MfcArchive &file);

void calcNodeDistanceAndAngle();
Expand Down

0 comments on commit cb1150c

Please sign in to comment.