Change some class naming conventions

This commit is contained in:
2023-09-15 13:28:18 -04:00
parent 40881ec284
commit cd3c82f2c4
20 changed files with 160 additions and 157 deletions

View File

@@ -5,14 +5,14 @@
/////////////////////////////////////////////////////
//
// FStringDecoder
// FlxStringDecoder
//
// This class is used to decipher 8-bit strings that
// contain packed ints, strings, and other data.
// The typical example of usage is to decipher the
// serialized animation queues fed to us by Luprex.
//
// The FStringDecoder doesn't make a copy of the string
// The FlxStringDecoder doesn't make a copy of the string
// you pass in, instead, it stores a pointer to it.
// So be sure not to free the string until you're
// done analyzing it.
@@ -26,7 +26,7 @@
/////////////////////////////////////////////////////
class FStringDecoder : public BaseReader<FStringDecoder> {
class FlxStringDecoder : public BaseReader<FlxStringDecoder> {
private:
const char* Text;
size_t Size;
@@ -68,7 +68,7 @@ public:
// Initialize the string decoder with a text to analyze.
//
FStringDecoder(std::string_view s);
FlxStringDecoder(std::string_view s);
// Get the size of the remaining text.
//