사전 정의된 유형은 PredefinedTypesC 패키지에 정의됩니다(Share\Properties 디렉토리의 PredefinedTypesC.sbs 파일).
RiCBoolean은 다음과 같이 프레임워크에 정의된(RiCTypes.h에서) 부울 데이터 유형입니다.
typedef unsigned char RiCBoolean;
RiCString은 다음과 같이 프레임워크에 정의된(RiCString.h에서) 문자열 데이터 유형입니다.
typedef struct RiCString {
unsigned int size; /* The current allocated size */
unsigned int count; /* The number of characters in
the string (without \0) */
char * string; /* the string */
} RiCString;
RiCString 유형에는 문자열을 작성, 영구 삭제 및 조작하기 위한 여러 오퍼레이션이 있습니다.
OMString은 Rational Rhapsody Developer for C++ 프레임워크에 정의된(omstring.h에서) 문자열 데이터 유형입니다. OMString 유형은 IBM Rational Rhapsody Developer for C++에서 작성된 모델과의 호환성을 제공합니다.