]> cygwin.com Git - cygwin-apps/setup.git/blob - confirm.h
Use indents in category view
[cygwin-apps/setup.git] / confirm.h
1 /*
2 * Copyright (c) 2018
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 */
13
14 #ifndef SETUP_CONFIRM_H
15 #define SETUP_CONFIRM_H
16
17 #include "proppage.h"
18
19 class ConfirmPage:public PropertyPage
20 {
21 public:
22 ConfirmPage ();
23 virtual ~ConfirmPage () { };
24 bool Create ();
25 virtual void OnInit ();
26 virtual void OnActivate ();
27 virtual long OnNext ();
28 virtual long OnBack ();
29 virtual long OnUnattended ();
30 private:
31 long whatNext ();
32 };
33
34 #endif /* SETUP_CONFIRM_H */
This page took 0.036549 seconds and 5 git commands to generate.