home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tutorial / cpptutor / source / phrase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-15  |  460 b   |  25 lines

  1.                                  // Chapter 6 - Program 11 - PHRASE.H
  2. #ifndef PHRASE_H
  3. #define PHRASE_H
  4.  
  5. class phrase {  
  6.    char verb[10];
  7.    char noun[10];
  8.    static char full_phrase[25];
  9. public:
  10.    inline phrase(void);
  11.    inline void set_noun(char *in_noun);
  12.    inline void set_verb(char *in_verb);
  13.    inline char *get_phrase(void);   
  14. };
  15.  
  16. #include "phrase.inl"
  17.  
  18. #endif
  19.  
  20.  
  21.  
  22. // Result of execution
  23. //
  24. // (This file cannot be executed)
  25.