aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/ad/ad_path.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
committerEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
commitb5a07fef8ebf29f7f44b15d9b34799c7e115fdad (patch)
tree76599c7b51aa6ad0447cb6ff6847f9eba54a679a /engines/wintermute/ad/ad_path.h
parent2e82471240804df65acdf51c43ea044cbb81ae68 (diff)
downloadscummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.gz
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.bz2
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.zip
WINTERMUTE: Get rid of the C-prefix for class-definitions.
Diffstat (limited to 'engines/wintermute/ad/ad_path.h')
-rw-r--r--engines/wintermute/ad/ad_path.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/wintermute/ad/ad_path.h b/engines/wintermute/ad/ad_path.h
index f27362bfd9..958f52af03 100644
--- a/engines/wintermute/ad/ad_path.h
+++ b/engines/wintermute/ad/ad_path.h
@@ -34,19 +34,19 @@
#include "engines/wintermute/base/base.h"
namespace WinterMute {
-class CBPoint;
-class CAdPath : public CBBase {
+class BasePoint;
+class AdPath : public BaseClass {
public:
- DECLARE_PERSISTENT(CAdPath, CBBase)
- CBPoint *getCurrent();
+ DECLARE_PERSISTENT(AdPath, BaseClass)
+ BasePoint *getCurrent();
bool setReady(bool ready = true);
- void addPoint(CBPoint *point);
- CBPoint *getNext();
- CBPoint *getFirst();
+ void addPoint(BasePoint *point);
+ BasePoint *getNext();
+ BasePoint *getFirst();
void reset();
- CAdPath(CBGame *inGame);
- virtual ~CAdPath();
- CBArray <CBPoint *, CBPoint *> _points;
+ AdPath(BaseGame *inGame);
+ virtual ~AdPath();
+ BaseArray <BasePoint *, BasePoint *> _points;
int _currIndex;
bool _ready;
};