From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- .../nel/classNLAISCRIPT_1_1CDiffOpCode.html | 510 +++++++++++++++++++++ 1 file changed, 510 insertions(+) create mode 100644 docs/doxygen/nel/classNLAISCRIPT_1_1CDiffOpCode.html (limited to 'docs/doxygen/nel/classNLAISCRIPT_1_1CDiffOpCode.html') diff --git a/docs/doxygen/nel/classNLAISCRIPT_1_1CDiffOpCode.html b/docs/doxygen/nel/classNLAISCRIPT_1_1CDiffOpCode.html new file mode 100644 index 00000000..5095e0e0 --- /dev/null +++ b/docs/doxygen/nel/classNLAISCRIPT_1_1CDiffOpCode.html @@ -0,0 +1,510 @@ + + + + nevrax.org : docs + + + + + + + + + + + + + + +
# Home   # nevrax.com   
+ + + + +
Nevrax
+ + + + + + + + + + +
+ + +
+ Nevrax.org
+ + + + + + + +
#News
#Mailing-list
#Documentation
#CVS
#Bugs
#License
+
+ + +
+ + +
+Docs + +
+  + + + + + +
Documentation 
+ +
+Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages   Search  
+

NLAISCRIPT::CDiffOpCode Class Reference

Class CDiffOpCode. +More... +

+#include <opcode.h> +

+

Inheritance diagram for NLAISCRIPT::CDiffOpCode: +

+ +NLAISCRIPT::IOpRunCode +NLAISCRIPT::IOpCode +NLAIAGENT::IObjectIA +NLAIAGENT::IBasicObjectIA +NLAIC::IBasicInterface +NLAIC::IBasicType +NLAIC::IPointerGestion +NLMISC::IStreamable +NLMISC::IClassable + +List of all members. + + + + + + + + + + + + + + + + + + + + +

Public Methods

 CDiffOpCode ()
NLAIAGENT::TProcessStatement runOpCode (CCodeContext &context)
 Computation of the op-code with a given context. More...

void getDebugResult (std::string &str, CCodeContext &context) const
 gets debug string from the op-code. More...

const NLAIC::IBasicTypeclone () const
 This function allow a pointer copy, that mean that the new class have the sam attributs caracteristics as the owne. More...

const NLAIC::IBasicTypenewInstance () const
 This function allow a new instance, that mean that the class is a class factory. More...

const NLAIC::CIdentTypegetType () const
 getType return a unique string how represente the class, it can be the name of the class. More...

void getDebugString (char *) const
void save (NLMISC::IStream &os)
 Save the class in a stream. More...

void load (NLMISC::IStream &is)
 Load the class from a stream. More...

virtual ~CDiffOpCode ()

Static Public Attributes

const NLAIC::CIdentType IdDiffOpCode
+

Detailed Description

+Class CDiffOpCode. +

+It is the same thing that (*stack[i - 1] != *stack[i]). Where i is the current stack position. +

+

+Author:
+Chafik sameh , Nevrax France
+Date:
+2000
+

+ +

+Definition at line 694 of file opcode.h.


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + +
NLAISCRIPT::CDiffOpCode::CDiffOpCode   [inline]
+
+ + + + + +
+   + + +

+ +

+Definition at line 701 of file opcode.h. +

+Referenced by clone.

+

+ + + + +
+ + + + + + + + + +
virtual NLAISCRIPT::CDiffOpCode::~CDiffOpCode   [inline, virtual]
+
+ + + + + +
+   + + +

+ +

+Definition at line 734 of file opcode.h.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + +
const NLAIC::IBasicType* NLAISCRIPT::CDiffOpCode::clone   const [inline, virtual]
+
+ + + + + +
+   + + +

+This function allow a pointer copy, that mean that the new class have the sam attributs caracteristics as the owne. +

+ +

+Implements NLAIC::IBasicType. +

+Definition at line 709 of file opcode.h. +

+References CDiffOpCode, and x. +

+Referenced by newInstance.

+

+ + + + +
+ + + + + + + + + + + + + + + + + + + +
void NLAISCRIPT::CDiffOpCode::getDebugResult std::string &   str,
CCodeContext  context
const [virtual]
+
+ + + + + +
+   + + +

+gets debug string from the op-code. +

+ +

+Implements NLAISCRIPT::IOpCode. +

+Definition at line 288 of file opcode.cpp.

+

+ + + + +
+ + + + + + + + + + +
void NLAISCRIPT::CDiffOpCode::getDebugString char *   const [inline]
+
+ + + + + +
+   + + +

+ +

+Definition at line 724 of file opcode.h.

+

+ + + + +
+ + + + + + + + + +
const NLAIC::CIdentType& NLAISCRIPT::CDiffOpCode::getType   const [inline, virtual]
+
+ + + + + +
+   + + +

+getType return a unique string how represente the class, it can be the name of the class. +

+This function is used for the sytem regstry class (see the definition of the template class Gen::CRegistry). +

+Implements NLAIC::IBasicType. +

+Definition at line 719 of file opcode.h.

+

+ + + + +
+ + + + + + + + + + +
void NLAISCRIPT::CDiffOpCode::load NLMISC::IStream  is [inline, virtual]
+
+ + + + + +
+   + + +

+Load the class from a stream. +

+ +

+Implements NLAIC::IBasicInterface. +

+Definition at line 730 of file opcode.h.

+

+ + + + +
+ + + + + + + + + +
const NLAIC::IBasicType* NLAISCRIPT::CDiffOpCode::newInstance   const [inline, virtual]
+
+ + + + + +
+   + + +

+This function allow a new instance, that mean that the class is a class factory. +

+ +

+Implements NLAIC::IBasicType. +

+Definition at line 714 of file opcode.h. +

+References clone.

+

+ + + + +
+ + + + + + + + + + +
NLAIAGENT::TProcessStatement NLAISCRIPT::CDiffOpCode::runOpCode CCodeContext  context [virtual]
+
+ + + + + +
+   + + +

+Computation of the op-code with a given context. +

+ +

+Implements NLAISCRIPT::IOpCode. +

+Definition at line 274 of file opcode.cpp. +

+References NLAIAGENT::IObjectIA::ProcessIdle, and NLAIC::IPointerGestion::release.

+

+ + + + +
+ + + + + + + + + + +
void NLAISCRIPT::CDiffOpCode::save NLMISC::IStream  os [inline, virtual]
+
+ + + + + +
+   + + +

+Save the class in a stream. +

+ +

+Implements NLAIC::IBasicInterface. +

+Definition at line 726 of file opcode.h.

+


Member Data Documentation

+

+ + + + +
+ + +
const NLAIC::CIdentType NLAISCRIPT::CDiffOpCode::IdDiffOpCode [static] +
+
+ + + + + +
+   + + +

+Initial value:

+

+Definition at line 104 of file opcode_register.cpp.

+


The documentation for this class was generated from the following files: + + + +
                                                                                                                                                                    +
+ + -- cgit v1.2.1