Changes between Version 9 and Version 10 of FDORfc60


Ignore:
Timestamp:
Apr 13, 2011, 8:27:14 AM (13 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc60

    v9 v10  
    146146[[Image(road_annotation.png)]]
    147147
     148Here are the new definitions (simplified property view) of the new !FdoAnnotationTextElement and !FdoAnnotationPropertyDefintion FDO API classes. The full descriptions of these new classes are available in subsequent sections and will specify the Set/Get methods for each class. Each property defined in the two classes described below map to a OGC Annotation construct as outlined in the
     149
     150
     151{{{
     152class FdoAnnotationTextElementClass : public FdoClassDefinition
     153{
     154public:
     155    FdoDataPropertyDefinition* SequenceProperty;
     156    FdoDataPropertyDefinition* ParentIdentityProperty;
     157    FdoDataPropertyDefinition* TextValueProperty;
     158    FdoDataPropertyDefinition* TextAttributesProperty;
     159    FdoGeometricPropertyDefinition* GeometryProperty;
     160    FdoGeometricPropertyDefinition* LeaderLineProperty;
     161};
     162}}}
     163
     164{{{
     165class FdoAnnotationPropertyDefinition : public FdoPropertyDefinition
     166{
     167public:
     168    FdoDataPropertyDefinition* FeatureIdentityProperty;
     169    FdoDataPropertyDefinition* DefaultTextValueProperty;
     170    FdoDataPropertyDefinition* DefaultTextAttributesProperty;
     171    FdoGeometricPropertyDefinition* TextEnvelopeProperty;
     172    FdoAnnotationTextElementClass* TextElementClass;
     173};
     174}}}
     175
     176
    148177== Implications ==
    149178