Ignore:
Timestamp:
2001-06-01T14:51:29+12:00 (23 years ago)
Author:
sjboddie
Message:

Changes to get phind working under windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/phind/generate/phrase.h

    r1873 r2487  
    2525 *
    2626 *********************************************************************/
     27
     28#ifndef PHRASE_H
     29#define PHRASE_H
     30
     31#if defined(GSDL_USE_STL_H)
     32#  include <vector.h>
     33#else
     34#  include <vector>
     35#endif
     36
     37#include "suffix.h"
    2738
    2839class Phrase {
     
    6172  Phrase(symbol *words, cellcount size, int direction);
    6273
     74  // An empty phrase can be created without arguments, but is
     75  // good for nothing and may not be used with any public fuctions.
     76  // We therefore only use it internally.
     77  Phrase();
     78
    6379  // Represent the phrase as  a string
    6480  char *toString();
     
    87103
    88104private:
    89 
    90   // An empty phrase can be created without arguments, but is
    91   // good for nothing and may not be used with any public fuctions.
    92   // We therefore only use it internally.
    93   Phrase();
    94105
    95106  // Does the phrase have a unique suffix/prefix extension?
     
    120131  int expandWhileUniqueSuffixExtension();
    121132  int expandWhileUniquePrefixExtension();
    122 
    123 
    124133};
    125134
     
    128137bool isLonger(Phrase p1, Phrase p2);
    129138
    130 
    131 
    132 
     139#endif
Note: See TracChangeset for help on using the changeset viewer.