home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume36 / formes / part01 / quizset.h < prev    next >
C/C++ Source or Header  |  1993-04-01  |  1KB  |  56 lines

  1.  
  2. /*
  3.  *  Copyright (C) 1992-1993 Jeffrey Chilton
  4.  *
  5.  *  Permission is granted to anyone to make or distribute copies of
  6.  *  this program, in any medium, provided that the copyright notice
  7.  *  and permission notice are preserved, and that the distributor
  8.  *  grants the recipient permission for further redistribution as
  9.  *  permitted by this notice.
  10.  *  
  11.  *  Author's E-mail address:  172-9221@mcimail.com
  12.  *  
  13.  */
  14.  
  15. /* static char *whatstring = "@(#)quizset.h    2.2 JWC"; */
  16.  
  17. #ifndef QUIZSET_H
  18. #define QUIZSET_H
  19.  
  20. /*
  21.  *  QuizSet - A collection of Quizs
  22.  */
  23.  
  24. typedef struct QuizSet QuizSet;
  25.  
  26. #include "collect.h"
  27. #include "quiz.h"
  28.  
  29. struct QuizSet
  30. {
  31.     Collection *allQuizs;
  32. };
  33.  
  34. #if __STDC__
  35.  
  36. extern QuizSet *QuizSet_new();
  37. extern void QuizSet_addOne(QuizSet *self, Quiz *quiz);
  38. extern Quiz *QuizSet_getOneAtRandom(QuizSet *self);
  39. extern Quiz *QuizSet_getOneFromClass(QuizSet *self, int class);
  40. extern void QuizSet_destroy(QuizSet *self);
  41.  
  42. #else
  43.  
  44. extern QuizSet *QuizSet_new();
  45. extern void QuizSet_addOne();
  46. extern Quiz *QuizSet_getOneAtRandom();
  47. extern Quiz *QuizSet_getOneFromClass();
  48. extern void QuizSet_destroy();
  49.  
  50. #endif
  51.  
  52. #define QuizSet_getAll(s) ((s)->allQuizs)
  53.  
  54. #endif
  55.  
  56.