Translated using Weblate (Chinese (Simplified))
[cygwin-setup.git] / postinstallresults.h
blob49913fed0231b1e1ae3ab4d0bcf2fb2bdd4ae43f
1 /*
2 * Copyright (c) 2010 Red Hat, Inc.
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_POSTINSTALL_H
15 #define SETUP_POSTINSTALL_H
17 #include "proppage.h"
19 class PostInstallResultsPage:public PropertyPage
21 public:
22 PostInstallResultsPage ();
23 virtual ~PostInstallResultsPage () { };
24 bool Create ();
25 virtual void OnInit ();
26 virtual void OnActivate ();
27 virtual long OnNext ();
28 virtual long OnBack ();
29 virtual long OnUnattended ();
30 void SetResultsString (std::string results) { _results = results; };
31 private:
32 std::string _results;
35 #endif /* SETUP_POSTINSTALL_H */