Diff for /Amaya/amaya/templates.h between versions 1.6 and 1.7

version 1.6, 2006/09/01 15:19:54 version 1.7, 2006/09/01 16:21:42
Line 4 Line 4
 #define THOT_EXPORT extern  #define THOT_EXPORT extern
 #include "amaya.h"  #include "amaya.h"
 #include "document.h"  #include "document.h"
 #include "mydictionary.h"  
   typedef void  *DicElement;
   
   //A record contains an element and its key.
   struct sRecord;
   typedef struct sRecord *Record;
   struct sRecord
   {
           char        *key;
     DicElement   element;
           Record       next;
   };
   
   //A dictionary contains a sequence of Records
   struct sDictionary;
   typedef struct sDictionary* DicDictionary;
   struct sDictionary
   {
           Record first;
           Record iter;
   };
   
 /* Structure of a template */  /* Structure of a template */
 struct _XTigerTemplate;  struct _XTigerTemplate;

Removed from v.1.6  
changed lines
  Added in v.1.7


Webmaster