ccString |
09/09/99 |
Author:
Daniel.Lindh@Home.se ICQ: 7983755 HOMEPAGE: home.bip.net/CyberCow Copyright © Cyber Cow 1995 - 1999. OverView |
Overview |
#include <ccString.h> Hierarchy Chart
|
Class Members | ||||||||||||
Data Items: Private:
Construction Public:
Input/Output Public:
Protected:
Private:
|
ccString::ccString | ||||
ccString() ccString( int aiNumber ) Return Value:
Arguments:
Remarks: Create the ccString object. Example: ccString lsFileName; |
ccString::operator = | ||||
CString& operator = (int aiNumber); Return Value:
Arguments:
Remarks: This member will convert the aiNumber parameter to a CString object. Example: ccString lsMaxAllowedFileSize; lsMaxAllowedFileSize = 10; |
ccString::operator int | ||||
operator int(); Return Value:
Arguments:
Remarks: This member will be used when casting a ccString object to an integer. If the number in the ccString is larger then the maximum allowed int value, it will be typcaste to an int and you will get a strange value. Example: ccString lsMaxAllowedFileSize; lsMaxAllowedFileSize = 10; int liMaxAllowedFileSize = lsMaxAllowedFileSize; |