File: cstring.sru
Size: 683
Date: Mon, 07 Apr 2008 21:31:19 +0200
$PBExportHeader$cstring.sru
$PBExportComments$String Constants
forward
global type cstring from nonvisualobject
end type
end forward

global type cstring from nonvisualobject
end type
global cstring cstring

type variables
Public:

CONSTANT string EMPTY = ""
CONSTANT string TAB = "~t"
CONSTANT string CR = "~r"
CONSTANT string NEWLINE = "~n"
CONSTANT string CR_NEWLINE = CR + NEWLINE
CONSTANT string SPACE = " "
CONSTANT string SLASH = "/"
CONSTANT string BACKSLASH = "\"
end variables
on cstring.create
call super::create
TriggerEvent( this, "constructor" )
end on

on cstring.destroy
TriggerEvent( this, "destructor" )
call super::destroy
end on