|
|
|
|
Documentation |
|
Main Page Namespace List Class Hierarchy Alphabetical List Compound List File List Namespace Members Compound Members File Members Related Pages Search
NLAIAGENT::IBasicObjectIA Class ReferenceIBasicObjectIA is the base class for all AI classes.
More...
#include <baseai.h>
Inheritance diagram for NLAIAGENT::IBasicObjectIA:
List of all members.
Public Methods |
| IBasicObjectIA () |
| IBasicObjectIA (const IBasicObjectIA &a) |
bool | operator== (const IBasicObjectIA &classType) const |
| Lot of algo use this function to determine the equality between 2 class, in particular the extraction from stl list. More...
|
virtual bool | isEqual (const IBasicObjectIA &a) const=0 |
| The bool operator==(const IBasicObjectIA &a) const member method call this function when class 'classType' have the same type of this class, programme have to assume the equality between the memebers of this class and the memeber of the class 'classType'. More...
|
virtual | ~IBasicObjectIA () |
Detailed Description
IBasicObjectIA is the base class for all AI classes.
It defines some basic functionalities as pure virtual functions. -
Author:
-
Chafik sameh , Nevrax France
-
Date:
-
2000
Definition at line 92 of file baseai.h.
Constructor & Destructor Documentation
NLAIAGENT::IBasicObjectIA::IBasicObjectIA |
( |
|
) |
|
|
NLAIAGENT::IBasicObjectIA::IBasicObjectIA |
( |
const IBasicObjectIA & |
a |
) |
|
|
NLAIAGENT::IBasicObjectIA::~IBasicObjectIA |
( |
|
) |
[virtual] |
|
Member Function Documentation
virtual bool NLAIAGENT::IBasicObjectIA::isEqual |
( |
const IBasicObjectIA & |
a |
) |
const [pure virtual] |
|
|
The bool operator==(const IBasicObjectIA &a) const member method call this function when class 'classType' have the same type of this class, programme have to assume the equality between the memebers of this class and the memeber of the class 'classType'.
Implemented in NLAIAGENT::CActor.
Referenced by operator==. |
bool NLAIAGENT::IBasicObjectIA::operator== |
( |
const IBasicObjectIA & |
classType |
) |
const |
|
|
Lot of algo use this function to determine the equality between 2 class, in particular the extraction from stl list.
the == operator call the bool isEqual(const IBasicObjectIA &a) const member method to determine the equality between tow class.
Definition at line 134 of file baseai.cpp.
References NLAIC::IBasicType::getType, and isEqual. |
The documentation for this class was generated from the following files:
|
|