home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AI Game Programming Wisdom
/
AIGameProgrammingWisdom.iso
/
SourceCode
/
11 Learning
/
01 Manslow
/
GPExample
/
CGPNOTNode.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
2001-10-07
|
380 b
|
23 lines
//GPExample
//Copyright John Manslow
//29/09/2001
#ifndef _GPNOTNode_
#define _GPNOTNode_
#include "CGPUnaryNode.h"
class CGP;
//See inherited class for comments
class CGPNOTNode : public CGPUnaryNode
{
public:
CGPNOTNode();
~CGPNOTNode();
virtual CGPNode *pGetCopy(CGP*);
virtual double dEvaluate(void);
virtual char *psGetString(char*);
};
#endif