Suggest URLs for updated setup based on build architecture
[cygwin-setup.git] / confirm.h
blobfe11ee09f901843fd43adb928db9cf78dd40d882
1 /*
2 * Copyright (c) 2018
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.
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
14 #ifndef SETUP_CONFIRM_H
15 #define SETUP_CONFIRM_H
17 #include "proppage.h"
19 class ConfirmPage:public PropertyPage
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 ();
34 #endif /* SETUP_CONFIRM_H */