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

TextInput.h

00001 /*
00002  * $Id: TextInput.h,v 1.4 2003/07/23 20:01:54 mindstorm2600 Exp $
00003  */
00004 #ifndef __CLAW_TEXT_INPUT_H__
00005 #define __CLAW_TEXT_INPUT_H__
00006 #include<System.h>
00007 #include<String.h>
00008 
00009 namespace clawsoft{
00010 
00021         class TextInput:protected System{
00022                 protected:
00023                         virtual void inputMethod(void *buf, Uint32 size);
00024                 public:
00025                         TextInput();
00026                         virtual ~TextInput();
00027 
00028                         void read(void *buf, Uint32 size);
00029                         virtual void readLine(char **buf, Uint32 *size);
00030                         virtual void readLine(String &s);
00031         };
00032 };
00033 
00034 #endif
00035 

Authors:

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

Powered by:

SourceForgeLogo