Dependencies:   EthernetNetIf NTPClient_NetServices mbed

Revision:
0:d441275f622f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/member.h	Mon Aug 09 07:01:43 2010 +0000
@@ -0,0 +1,25 @@
+#ifndef _INC_MEMBER
+#define _INC_MEMBER
+
+#include "Object.h"
+class member : public Object{
+//class member{
+private:
+    char* name;
+    unsigned int id;
+    bool enter;
+    
+public:
+    member(char* inName,unsigned int inId);
+    
+    void SetName(char* inName);
+    void SetId(unsigned int inId);
+    void SetEnter(bool inEnter);
+    char* GetName(void);
+    unsigned int GetId(void);
+    unsigned int GetEnter(void);
+    
+    virtual void Print(void);
+    virtual bool CompareId(unsigned int id);
+};
+#endif