Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields  

Container.h

00001 /*
00002  * $Id: Container.h,v 1.3 2003/06/23 03:27:32 mindstorm2600 Exp $
00003  */
00004 #ifndef __CLAW_CONTAINER_H__
00005 #define __CLAW_CONTAINER_H__
00006 #include<System.h>
00007 #include<Exception.h>
00008 
00009 namespace clawsoft{
00010 
00014         class Container:public System{
00015                 protected:
00020                         unsigned int num_data;
00021                 public:
00025                         Container();
00029                         Container(const char *);
00033                         unsigned int size(){
00034                                 return num_data;
00035                         }
00036         };
00037 
00038 }
00039 
00040 #endif

Authors:

Juan V. Guerrero
Jannette C. Mejia
Juan C. Guevara

Powered by:

SourceForgeLogo