]> cygwin.com Git - cygwin-apps/setup.git/blame - postinstallresults.h
Use solver to check for problems and produce a list of package transactions
[cygwin-apps/setup.git] / postinstallresults.h
CommitLineData
df38593d
JT
1/*
2 * Copyright (c) 2010 Red Hat, Inc.
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_POSTINSTALL_H
15#define SETUP_POSTINSTALL_H
16
17#include "proppage.h"
18
19class PostInstallResultsPage:public PropertyPage
20{
21public:
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;
33};
34
35#endif /* SETUP_POSTINSTALL_H */
This page took 0.053677 seconds and 5 git commands to generate.