corrections to namespaces

svn-id: r13362
This commit is contained in:
Paweł Kołodziejski 2004-03-22 21:25:29 +00:00
parent d24be923f3
commit 89d159f9c8
10 changed files with 16 additions and 8 deletions

View File

@ -148,4 +148,4 @@ int32 BinReader::readSint32BE() {
return u32_be;
}
}
} // End of namespace Saga

View File

@ -25,6 +25,8 @@
#include <stddef.h>
#include "common/scummsys.h"
namespace Saga {
class BinReader {
protected:
@ -60,6 +62,7 @@ public:
int32 readSint32BE();
};
} // End of namespace Saga
#endif

View File

@ -446,4 +446,4 @@ bool verifyIHNMCD() {
return true;
}
}
} // End of namespace Saga

View File

@ -118,7 +118,7 @@ typedef struct R_GAME_RESOURCEINFO_tag {
int detectGame();
bool openGame();
} // end namespace
} // End of namespace Saga
#endif

View File

@ -111,7 +111,7 @@ bool verifyITECD();
bool verifyIHNMDEMO();
bool verifyIHNMCD();
}
} // End of namespace Saga
#endif // SAGA_GAMEDESC_PRIV_H

View File

@ -159,4 +159,4 @@ void ResourceFile::freeResource(byte *res) {
delete[] res;
}
}
} // End of namespace Saga

View File

@ -33,6 +33,8 @@
#include "common/file.h"
namespace Saga {
class ResourceFile : public File {
public:
@ -94,6 +96,7 @@ public:
};
} // End of namespace Saga
#endif

View File

@ -22,6 +22,8 @@
#ifndef SAGA_RESNAMES_H
#define SAGA_RESNAMES_H
namespace Saga {
/* Lookup tables
\*-----------------------------------------------------------------*/
#define ITE_SCENE_LUT 1806
@ -120,6 +122,7 @@
#define MUSIC_25 33
#define MUSIC_26 34
} // End of namespace Saga
#endif

View File

@ -33,7 +33,6 @@
#include "gamedesc.h"
struct SAGAGameSettings {
const char *name;
const char *description;
@ -132,4 +131,4 @@ void SagaEngine::shutdown() {
_system->quit();
}
}
} // End of namespace Saga

View File

@ -54,6 +54,6 @@ public:
};
}
} // End of namespace Saga
#endif