Pile Group Tool  2.0.3
Educational tool demonstrating behavior of pile groups in layered soil
quickinfopopup.h
1 /*********************************************************************************
2 **
3 ** Copyright (c) 2017 The University of Notre Dame
4 ** Copyright (c) 2017 The Regents of the University of California
5 **
6 ** Redistribution and use in source and binary forms, with or without modification,
7 ** are permitted provided that the following conditions are met:
8 **
9 ** 1. Redistributions of source code must retain the above copyright notice, this
10 ** list of conditions and the following disclaimer.
11 **
12 ** 2. Redistributions in binary form must reproduce the above copyright notice, this
13 ** list of conditions and the following disclaimer in the documentation and/or other
14 ** materials provided with the distribution.
15 **
16 ** 3. Neither the name of the copyright holder nor the names of its contributors may
17 ** be used to endorse or promote products derived from this software without specific
18 ** prior written permission.
19 **
20 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
21 ** EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 ** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
23 ** SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 ** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
25 ** TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
26 ** BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 ** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28 ** IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 ** SUCH DAMAGE.
30 **
31 ***********************************************************************************/
32 
33 // Contributors:
34 // Written by Peter Sempolinski, for the Natural Hazard Modeling Laboratory, director: Ahsan Kareem, at Notre Dame
35 
36 #ifndef QUICKINFOPOPUP_H
37 #define QUICKINFOPOPUP_H
38 
39 #include <QDialog>
40 
41 namespace Ui {
42 class QuickInfoPopup;
43 }
44 
45 class QuickInfoPopup : public QDialog
46 {
47  Q_OBJECT
48 
49 public:
50  explicit QuickInfoPopup(QString message, QWidget *parent = 0);
51  ~QuickInfoPopup();
52 
53 private:
54  Ui::QuickInfoPopup *ui;
55 };
56 
57 #endif // QUICKINFOPOPUP_H
Definition: materialdbinterface.h:6
Definition: quickinfopopup.h:45