//******************************************************* // // Delphi DataSnap Framework // // Copyright(c) 1995-2011 Embarcadero Technologies, Inc. // //******************************************************* #import #import "DBXValue.h" /** * * @brief Wraps the AnsiChars type and allows it to be null * */ @interface TDBXAnsiCharsValue : DBXValue { @protected bool ValueNull; @private NSString *DBXStringValue; } @end