|
Electrosim
1.00
|
00001 /*********************************************************************** 00002 * Module: node.h 00003 * Author: SALMON PAUL 00004 * MONLOUIS Kevyn 00005 * DUREUIL Brice 00006 * Modified: mardi 5 juin 2012 15:01:47 00007 * Purpose: Declaration of the class Node 00008 ***********************************************************************/ 00009 00010 #ifndef NODE_H 00011 #define NODE_H 00012 00023 #include "item.h" 00024 00033 class Node : public Item 00034 { 00035 00036 public: 00043 explicit Node(int n); 00044 00050 virtual bool _do(); 00051 00057 virtual void setAuxValue(int value); 00058 }; 00059 00060 #endif // NODE_H
1.8.0