home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Libraries
/
CDictionary 1.0
/
CPascalString.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-01-12
|
342 b
|
18 lines
|
[
TEXT/KAHL
]
/*
useless class created soley for testing CDictionary
*/
#define _H_CPascalString
/* simple object for testing dictionary. Just holds a pascal string */
#include "CObject.h"
#include "defs.h"
struct CPascalString : CObject
{
Str255 itsString;
virtual void SetString( StringPtr string);
virtual void GetString( StringPtr string);
};