aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/inventory.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-08 18:37:39 +0200
committerEugene Sandulenko2014-01-08 18:37:39 +0200
commit71c8d5edd033dd4f36fab7a9632ff295e929ad8b (patch)
treec627b1d6ba4612639decae52f7203bf8dbbc9fed /engines/fullpipe/inventory.cpp
parenta40c6075735869b6f802552f0a9966445f515d0d (diff)
downloadscummvm-rg350-71c8d5edd033dd4f36fab7a9632ff295e929ad8b.tar.gz
scummvm-rg350-71c8d5edd033dd4f36fab7a9632ff295e929ad8b.tar.bz2
scummvm-rg350-71c8d5edd033dd4f36fab7a9632ff295e929ad8b.zip
FULLPIPE: Stubbed and implemented some class destructors
Diffstat (limited to 'engines/fullpipe/inventory.cpp')
-rw-r--r--engines/fullpipe/inventory.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/fullpipe/inventory.cpp b/engines/fullpipe/inventory.cpp
index 3e22f8526d..f5af0611cb 100644
--- a/engines/fullpipe/inventory.cpp
+++ b/engines/fullpipe/inventory.cpp
@@ -30,6 +30,10 @@
namespace Fullpipe {
+Inventory::~Inventory() {
+ warning("STUB: Inventory::~Inventory()");
+}
+
bool Inventory::load(MfcArchive &file) {
debug(5, "Inventory::load()");
@@ -85,6 +89,10 @@ Inventory2::Inventory2() {
_topOffset = -65;
}
+Inventory2::~Inventory2() {
+ warning("STUB: Inventory2::~Inventory2()");
+}
+
bool Inventory2::loadPartial(MfcArchive &file) { // Inventory2_SerializePartially
int numInvs = file.readUint32LE();