Dependencies:   EthernetNetIf NTPClient_NetServices mbed

Committer:
nucho
Date:
Wed Aug 11 06:37:11 2010 +0000
Revision:
1:b494b1b91ba3
Parent:
0:d441275f622f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nucho 0:d441275f622f 1 #ifndef _INC_MEMBER
nucho 0:d441275f622f 2 #define _INC_MEMBER
nucho 0:d441275f622f 3
nucho 0:d441275f622f 4 #include "Object.h"
nucho 0:d441275f622f 5 class member : public Object{
nucho 0:d441275f622f 6 //class member{
nucho 0:d441275f622f 7 private:
nucho 0:d441275f622f 8 char* name;
nucho 0:d441275f622f 9 unsigned int id;
nucho 0:d441275f622f 10 bool enter;
nucho 0:d441275f622f 11
nucho 0:d441275f622f 12 public:
nucho 0:d441275f622f 13 member(char* inName,unsigned int inId);
nucho 0:d441275f622f 14
nucho 0:d441275f622f 15 void SetName(char* inName);
nucho 0:d441275f622f 16 void SetId(unsigned int inId);
nucho 0:d441275f622f 17 void SetEnter(bool inEnter);
nucho 0:d441275f622f 18 char* GetName(void);
nucho 0:d441275f622f 19 unsigned int GetId(void);
nucho 0:d441275f622f 20 unsigned int GetEnter(void);
nucho 0:d441275f622f 21
nucho 0:d441275f622f 22 virtual void Print(void);
nucho 0:d441275f622f 23 virtual bool CompareId(unsigned int id);
nucho 0:d441275f622f 24 };
nucho 0:d441275f622f 25 #endif