File: setupedit.h

package info (click to toggle)
craft 3.5-12
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 18,172 kB
  • ctags: 1,605
  • sloc: cpp: 3,794; makefile: 2,322; ansic: 857; sh: 842
file content (26 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef setupedit_h
#define setupedit_h

class edit_setup
  {public :

   int    money;
   int    num   [5];
   int    price [5];
   int    s;
   win    *w;
   button *incr [5];
   button *decr [5];
   button *quit;
   button *cancel;

   edit_setup  (char host [], int money);
   ~edit_setup ();

   void eval (bool &quit, int num [5]);

 };

#endif