#include <sexpress.hpp>
Inheritance diagram for SExpressionClassicAtom:
The purpose of this class is just to represent the difference between `CAT' and `"CAT"' being read by the IntelibReader in case no real package is given. You can use it for your own purposes, too.
Definition at line 407 of file sexpress.hpp.
Public Member Functions | |
SExpressionClassicAtom (const char *s) | |
virtual SString | TextRepresentation () const |
const char * | GetValue () const |
const IntelibTypeId & | TermType () const |
Actual S-expression type. | |
bool | IsChangeable () const |
Can it be changed during the lifetime of the object? | |
virtual SExpression * | Clone () const |
Clone a changeable object. | |
Static Public Attributes | |
static IntelibTypeId | TypeId |
Identifier for the set of all possible S-expressions. | |
Protected Member Functions | |
~SExpressionClassicAtom () | |
virtual bool | SpecificEql (const SExpression *other) const |
Are the two objects EQL (while not EQ). | |
bool | CanDie () |
Is it OK to delete the object now? |
|
Definition at line 410 of file sexpress.hpp. References TypeId. |
|
Definition at line 415 of file sexpress.hpp. |
|
The representation includes double quotes. All special characters are converted to standard C string escapes Reimplemented from SExpressionString. |
|
Definition at line 384 of file sexpress.hpp. Referenced by SExpressionExtvarname::TextRepresentation(). |
|
Are the two objects EQL (while not EQ). This function is overriden by those SExpressions able to be EQL while being not EQ.
Reimplemented from SExpression. |
|
Actual S-expression type.
Definition at line 195 of file sexpress.hpp. Referenced by SReference::DynamicCastGetPtr(), SchReference::IsEql(), LReference::IsEql(), SReference::SimpleCastGetPtr(), SchReference::TextRepresentation(), and LReference::TextRepresentation(). |
|
Can it be changed during the lifetime of the object?
Definition at line 198 of file sexpress.hpp. References IntelibTypeId::IsChangeable(). |
|
Clone a changeable object. The method should return the pointer created with new
Reimplemented in SExpressionBacklink, SExpressionCons, SExpressionHashTable, SExpressionRawBuffer, and SExpressionVector. Definition at line 214 of file sexpress.hpp. |
|
Is it OK to delete the object now? Our children have no access to the private attribute RefCount and should never need it except when checking if the destruction is not an error. This solves the problem. Definition at line 53 of file refcount.hpp. |
|
Identifier for the set of all possible S-expressions.
Reimplemented from SExpressionString. Referenced by SExpressionClassicAtom(). |