mirror of https://github.com/OpenTTD/OpenTTD
(svn r23938) -Codechange: declare ScriptScanner::Initialize() and make it abstract, make the other overloaded Initialize() protected
parent
c44d9fc366
commit
f79c388a1c
|
@ -24,11 +24,7 @@ public:
|
|||
ScriptScanner();
|
||||
virtual ~ScriptScanner();
|
||||
|
||||
/**
|
||||
* Initialize the scanner.
|
||||
* @param name The name of the scanner ("AIScanner", "GSScanner", ..).
|
||||
*/
|
||||
virtual void Initialize(const char *name);
|
||||
virtual void Initialize() = 0;
|
||||
|
||||
/**
|
||||
* Get the engine of the main squirrel handler (it indexes all available scripts).
|
||||
|
@ -88,6 +84,12 @@ protected:
|
|||
ScriptInfoList info_list; ///< The list of all script.
|
||||
ScriptInfoList info_single_list; ///< The list of all unique script. The best script (highest version) is shown.
|
||||
|
||||
/**
|
||||
* Initialize the scanner.
|
||||
* @param name The name of the scanner ("AIScanner", "GSScanner", ..).
|
||||
*/
|
||||
void Initialize(const char *name);
|
||||
|
||||
/**
|
||||
* Get the script name how to store the script in memory.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue