mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r20288) -Doc: add doxygen string to all GetClassName functions (part of all AI api classes)
This commit is contained in:
parent
d1787d884c
commit
7b62e4dc8e
@ -24,6 +24,7 @@ class AIAbstractListSorter;
|
|||||||
*/
|
*/
|
||||||
class AIAbstractList : public AIObject {
|
class AIAbstractList : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIAbstractList"; }
|
static const char *GetClassName() { return "AIAbstractList"; }
|
||||||
|
|
||||||
/** Type of sorter */
|
/** Type of sorter */
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIAccounting : public AIObject {
|
class AIAccounting : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIAccounting"; }
|
static const char *GetClassName() { return "AIAccounting"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIAirport : public AIObject {
|
class AIAirport : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIAirport"; }
|
static const char *GetClassName() { return "AIAirport"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIBase : public AIObject {
|
class AIBase : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIBase"; }
|
static const char *GetClassName() { return "AIBase"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIBaseStation : public AIObject {
|
class AIBaseStation : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIBaseStation"; }
|
static const char *GetClassName() { return "AIBaseStation"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -41,6 +41,7 @@ public:
|
|||||||
ERR_BRIDGE_HEADS_NOT_ON_SAME_HEIGHT, // [STR_ERROR_BRIDGEHEADS_NOT_SAME_HEIGHT]
|
ERR_BRIDGE_HEADS_NOT_ON_SAME_HEIGHT, // [STR_ERROR_BRIDGEHEADS_NOT_SAME_HEIGHT]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIBridge"; }
|
static const char *GetClassName() { return "AIBridge"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIBridgeList : public AIAbstractList {
|
class AIBridgeList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIBridgeList"; }
|
static const char *GetClassName() { return "AIBridgeList"; }
|
||||||
AIBridgeList();
|
AIBridgeList();
|
||||||
};
|
};
|
||||||
@ -30,6 +31,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIBridgeList_Length : public AIAbstractList {
|
class AIBridgeList_Length : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIBridgeList_Length"; }
|
static const char *GetClassName() { return "AIBridgeList_Length"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
class AICargo : public AIObject {
|
class AICargo : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AICargo"; }
|
static const char *GetClassName() { return "AICargo"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AICargoList : public AIAbstractList {
|
class AICargoList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AICargoList"; }
|
static const char *GetClassName() { return "AICargoList"; }
|
||||||
AICargoList();
|
AICargoList();
|
||||||
};
|
};
|
||||||
@ -30,6 +31,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AICargoList_IndustryAccepting : public AIAbstractList {
|
class AICargoList_IndustryAccepting : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AICargoList_IndustryAccepting"; }
|
static const char *GetClassName() { return "AICargoList_IndustryAccepting"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -44,6 +46,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AICargoList_IndustryProducing : public AIAbstractList {
|
class AICargoList_IndustryProducing : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AICargoList_IndustryProducing"; }
|
static const char *GetClassName() { return "AICargoList_IndustryProducing"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
class AICompany : public AIObject {
|
class AICompany : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AICompany"; }
|
static const char *GetClassName() { return "AICompany"; }
|
||||||
|
|
||||||
/** Different constants related to CompanyID. */
|
/** Different constants related to CompanyID. */
|
||||||
|
@ -24,6 +24,7 @@ class AIController {
|
|||||||
friend class AIInstance;
|
friend class AIInstance;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIController"; }
|
static const char *GetClassName() { return "AIController"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIDate : public AIObject {
|
class AIDate : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIDate"; }
|
static const char *GetClassName() { return "AIDate"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIDepotList : public AIAbstractList {
|
class AIDepotList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIDepotList"; }
|
static const char *GetClassName() { return "AIDepotList"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIEngine : public AIObject {
|
class AIEngine : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEngine"; }
|
static const char *GetClassName() { return "AIEngine"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIEngineList : public AIAbstractList {
|
class AIEngineList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEngineList"; }
|
static const char *GetClassName() { return "AIEngineList"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,6 +43,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIError : public AIObject {
|
class AIError : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIError"; }
|
static const char *GetClassName() { return "AIError"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIEvent : public AIObject {
|
class AIEvent : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEvent"; }
|
static const char *GetClassName() { return "AIEvent"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -81,6 +82,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* The name of the class, needed by several sub-processes.
|
* The name of the class, needed by several sub-processes.
|
||||||
*/
|
*/
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventController"; }
|
static const char *GetClassName() { return "AIEventController"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIEventVehicleCrashed : public AIEvent {
|
class AIEventVehicleCrashed : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventVehicleCrashed"; }
|
static const char *GetClassName() { return "AIEventVehicleCrashed"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -84,6 +85,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventSubsidyOffer : public AIEvent {
|
class AIEventSubsidyOffer : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventSubsidyOffer"; }
|
static const char *GetClassName() { return "AIEventSubsidyOffer"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -116,6 +118,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventSubsidyOfferExpired : public AIEvent {
|
class AIEventSubsidyOfferExpired : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventSubsidyOfferExpired"; }
|
static const char *GetClassName() { return "AIEventSubsidyOfferExpired"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -148,6 +151,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventSubsidyAwarded : public AIEvent {
|
class AIEventSubsidyAwarded : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventSubsidyAwarded"; }
|
static const char *GetClassName() { return "AIEventSubsidyAwarded"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -180,6 +184,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventSubsidyExpired : public AIEvent {
|
class AIEventSubsidyExpired : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventSubsidyExpired"; }
|
static const char *GetClassName() { return "AIEventSubsidyExpired"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -214,6 +219,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventEnginePreview : public AIEvent {
|
class AIEventEnginePreview : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventEnginePreview"; }
|
static const char *GetClassName() { return "AIEventEnginePreview"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -298,6 +304,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventCompanyNew : public AIEvent {
|
class AIEventCompanyNew : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventCompanyNew"; }
|
static const char *GetClassName() { return "AIEventCompanyNew"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -331,6 +338,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventCompanyInTrouble : public AIEvent {
|
class AIEventCompanyInTrouble : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventCompanyInTrouble"; }
|
static const char *GetClassName() { return "AIEventCompanyInTrouble"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -363,6 +371,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventCompanyAskMerger : public AIEvent {
|
class AIEventCompanyAskMerger : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventCompanyAskMerger"; }
|
static const char *GetClassName() { return "AIEventCompanyAskMerger"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -412,6 +421,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventCompanyMerger : public AIEvent {
|
class AIEventCompanyMerger : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventCompanyMerger"; }
|
static const char *GetClassName() { return "AIEventCompanyMerger"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -456,6 +466,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventCompanyBankrupt : public AIEvent {
|
class AIEventCompanyBankrupt : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventCompanyBankrupt"; }
|
static const char *GetClassName() { return "AIEventCompanyBankrupt"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -488,6 +499,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventVehicleLost : public AIEvent {
|
class AIEventVehicleLost : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventVehicleLost"; }
|
static const char *GetClassName() { return "AIEventVehicleLost"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -520,6 +532,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventVehicleWaitingInDepot : public AIEvent {
|
class AIEventVehicleWaitingInDepot : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventVehicleWaitingInDepot"; }
|
static const char *GetClassName() { return "AIEventVehicleWaitingInDepot"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -552,6 +565,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventVehicleUnprofitable : public AIEvent {
|
class AIEventVehicleUnprofitable : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventVehicleUnprofitable"; }
|
static const char *GetClassName() { return "AIEventVehicleUnprofitable"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -584,6 +598,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventIndustryOpen : public AIEvent {
|
class AIEventIndustryOpen : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventIndustryOpen"; }
|
static const char *GetClassName() { return "AIEventIndustryOpen"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -616,6 +631,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventIndustryClose : public AIEvent {
|
class AIEventIndustryClose : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventIndustryClose"; }
|
static const char *GetClassName() { return "AIEventIndustryClose"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -648,6 +664,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventEngineAvailable : public AIEvent {
|
class AIEventEngineAvailable : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventEngineAvailable"; }
|
static const char *GetClassName() { return "AIEventEngineAvailable"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -680,6 +697,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventStationFirstVehicle : public AIEvent {
|
class AIEventStationFirstVehicle : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventStationFirstVehicle"; }
|
static const char *GetClassName() { return "AIEventStationFirstVehicle"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -721,6 +739,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventDisasterZeppelinerCrashed : public AIEvent {
|
class AIEventDisasterZeppelinerCrashed : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventDisasterZeppelinerCrashed"; }
|
static const char *GetClassName() { return "AIEventDisasterZeppelinerCrashed"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -753,6 +772,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class AIEventDisasterZeppelinerCleared : public AIEvent {
|
class AIEventDisasterZeppelinerCleared : public AIEvent {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIEventDisasterZeppelinerCleared"; }
|
static const char *GetClassName() { return "AIEventDisasterZeppelinerCleared"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIExecMode : public AIObject {
|
class AIExecMode : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIExecMode"; }
|
static const char *GetClassName() { return "AIExecMode"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIGameSettings : public AIObject {
|
class AIGameSettings : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIGameSettings"; }
|
static const char *GetClassName() { return "AIGameSettings"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIGroup : public AIObject {
|
class AIGroup : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIGroup"; }
|
static const char *GetClassName() { return "AIGroup"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIGroupList : public AIAbstractList {
|
class AIGroupList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIGroupList"; }
|
static const char *GetClassName() { return "AIGroupList"; }
|
||||||
AIGroupList();
|
AIGroupList();
|
||||||
};
|
};
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIIndustry : public AIObject {
|
class AIIndustry : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIIndustry"; }
|
static const char *GetClassName() { return "AIIndustry"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIIndustryList : public AIAbstractList {
|
class AIIndustryList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIIndustryList"; }
|
static const char *GetClassName() { return "AIIndustryList"; }
|
||||||
AIIndustryList();
|
AIIndustryList();
|
||||||
};
|
};
|
||||||
@ -30,6 +31,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIIndustryList_CargoAccepting : public AIAbstractList {
|
class AIIndustryList_CargoAccepting : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIIndustryList_CargoAccepting"; }
|
static const char *GetClassName() { return "AIIndustryList_CargoAccepting"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -45,6 +47,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIIndustryList_CargoProducing : public AIAbstractList {
|
class AIIndustryList_CargoProducing : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIIndustryList_CargoProducing"; }
|
static const char *GetClassName() { return "AIIndustryList_CargoProducing"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIIndustryType : public AIObject {
|
class AIIndustryType : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIIndustryType"; }
|
static const char *GetClassName() { return "AIIndustryType"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIIndustryTypeList : public AIAbstractList {
|
class AIIndustryTypeList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIIndustryTypeList"; }
|
static const char *GetClassName() { return "AIIndustryTypeList"; }
|
||||||
AIIndustryTypeList();
|
AIIndustryTypeList();
|
||||||
};
|
};
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIList : public AIAbstractList {
|
class AIList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIList"; }
|
static const char *GetClassName() { return "AIList"; }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -23,6 +23,7 @@ class AILog : public AIObject {
|
|||||||
friend class AIController;
|
friend class AIController;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AILog"; }
|
static const char *GetClassName() { return "AILog"; }
|
||||||
|
|
||||||
#ifndef EXPORT_SKIP
|
#ifndef EXPORT_SKIP
|
||||||
|
@ -22,6 +22,7 @@ class AIMap : public AIObject {
|
|||||||
public:
|
public:
|
||||||
static const int TILE_INVALID = (int)INVALID_TILE; ///< Invalid TileIndex.
|
static const int TILE_INVALID = (int)INVALID_TILE; ///< Invalid TileIndex.
|
||||||
|
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIMap"; }
|
static const char *GetClassName() { return "AIMap"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIMarine : public AIObject {
|
class AIMarine : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIMarine"; }
|
static const char *GetClassName() { return "AIMarine"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIOrder : public AIObject {
|
class AIOrder : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIOrder"; }
|
static const char *GetClassName() { return "AIOrder"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIRail : public AIObject {
|
class AIRail : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIRail"; }
|
static const char *GetClassName() { return "AIRail"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIRailTypeList : public AIAbstractList {
|
class AIRailTypeList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIRailTypeList"; }
|
static const char *GetClassName() { return "AIRailTypeList"; }
|
||||||
AIRailTypeList();
|
AIRailTypeList();
|
||||||
};
|
};
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIRoad : public AIObject {
|
class AIRoad : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIRoad"; }
|
static const char *GetClassName() { return "AIRoad"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AISign : public AIObject {
|
class AISign : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AISign"; }
|
static const char *GetClassName() { return "AISign"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AISignList : public AIAbstractList {
|
class AISignList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AISignList"; }
|
static const char *GetClassName() { return "AISignList"; }
|
||||||
AISignList();
|
AISignList();
|
||||||
};
|
};
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIStation : public AIBaseStation {
|
class AIStation : public AIBaseStation {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIStation"; }
|
static const char *GetClassName() { return "AIStation"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIStationList : public AIAbstractList {
|
class AIStationList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIStationList"; }
|
static const char *GetClassName() { return "AIStationList"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -35,6 +36,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIStationList_Vehicle : public AIAbstractList {
|
class AIStationList_Vehicle : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIStationList_Vehicle"; }
|
static const char *GetClassName() { return "AIStationList_Vehicle"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AISubsidy : public AIObject {
|
class AISubsidy : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AISubsidy"; }
|
static const char *GetClassName() { return "AISubsidy"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AISubsidyList : public AIAbstractList {
|
class AISubsidyList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AISubsidyList"; }
|
static const char *GetClassName() { return "AISubsidyList"; }
|
||||||
AISubsidyList();
|
AISubsidyList();
|
||||||
};
|
};
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
*/
|
*/
|
||||||
class AITestMode : public AIObject {
|
class AITestMode : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITestMode"; }
|
static const char *GetClassName() { return "AITestMode"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AITile : public AIObject {
|
class AITile : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITile"; }
|
static const char *GetClassName() { return "AITile"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AITileList : public AIAbstractList {
|
class AITileList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITileList"; }
|
static const char *GetClassName() { return "AITileList"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -63,6 +64,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AITileList_IndustryAccepting : public AITileList {
|
class AITileList_IndustryAccepting : public AITileList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITileList_IndustryAccepting"; }
|
static const char *GetClassName() { return "AITileList_IndustryAccepting"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -81,6 +83,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AITileList_IndustryProducing : public AITileList {
|
class AITileList_IndustryProducing : public AITileList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITileList_IndustryProducing"; }
|
static const char *GetClassName() { return "AITileList_IndustryProducing"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -99,6 +102,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AITileList_StationType : public AITileList {
|
class AITileList_StationType : public AITileList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITileList_StationType"; }
|
static const char *GetClassName() { return "AITileList_StationType"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AITown : public AIObject {
|
class AITown : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITown"; }
|
static const char *GetClassName() { return "AITown"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AITownList : public AIAbstractList {
|
class AITownList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITownList"; }
|
static const char *GetClassName() { return "AITownList"; }
|
||||||
AITownList();
|
AITownList();
|
||||||
};
|
};
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
class AITunnel : public AIObject {
|
class AITunnel : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AITunnel"; }
|
static const char *GetClassName() { return "AITunnel"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIVehicle : public AIObject {
|
class AIVehicle : public AIObject {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIVehicle"; }
|
static const char *GetClassName() { return "AIVehicle"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIVehicleList : public AIAbstractList {
|
class AIVehicleList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIVehicleList"; }
|
static const char *GetClassName() { return "AIVehicleList"; }
|
||||||
AIVehicleList();
|
AIVehicleList();
|
||||||
};
|
};
|
||||||
@ -31,6 +32,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIVehicleList_Station : public AIAbstractList {
|
class AIVehicleList_Station : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIVehicleList_Station"; }
|
static const char *GetClassName() { return "AIVehicleList_Station"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -50,6 +52,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIVehicleList_Depot : public AIAbstractList {
|
class AIVehicleList_Depot : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIVehicleList_Depot"; }
|
static const char *GetClassName() { return "AIVehicleList_Depot"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -64,6 +67,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIVehicleList_SharedOrders : public AIAbstractList {
|
class AIVehicleList_SharedOrders : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIVehicleList_SharedOrders"; }
|
static const char *GetClassName() { return "AIVehicleList_SharedOrders"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -78,6 +82,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIVehicleList_Group : public AIAbstractList {
|
class AIVehicleList_Group : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIVehicleList_Group"; }
|
static const char *GetClassName() { return "AIVehicleList_Group"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -92,6 +97,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIVehicleList_DefaultGroup : public AIAbstractList {
|
class AIVehicleList_DefaultGroup : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIVehicleList_DefaultGroup"; }
|
static const char *GetClassName() { return "AIVehicleList_DefaultGroup"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIWaypoint : public AIBaseStation {
|
class AIWaypoint : public AIBaseStation {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIWaypoint"; }
|
static const char *GetClassName() { return "AIWaypoint"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
class AIWaypointList : public AIAbstractList {
|
class AIWaypointList : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIWaypointList"; }
|
static const char *GetClassName() { return "AIWaypointList"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -35,6 +36,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
class AIWaypointList_Vehicle : public AIAbstractList {
|
class AIWaypointList_Vehicle : public AIAbstractList {
|
||||||
public:
|
public:
|
||||||
|
/** Get the name of this class to identify it towards squirrel. */
|
||||||
static const char *GetClassName() { return "AIWaypointList_Vehicle"; }
|
static const char *GetClassName() { return "AIWaypointList_Vehicle"; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user