Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtmail / include / MotifApp / QuestionDialogManager.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: QuestionDialogManager.h /main/4 1996/04/21 19:46:42 drk $
24  *
25  * (c) Copyright 1996 Digital Equipment Corporation.
26  * (c) Copyright 1996 Hewlett-Packard Company.
27  * (c) Copyright 1996 International Business Machines Corp.
28  * (c) Copyright 1996 Sun Microsystems, Inc.
29  * (c) Copyright 1996 Novell, Inc. 
30  * (c) Copyright 1996 FUJITSU LIMITED.
31  * (c) Copyright 1996 Hitachi.
32  */
33 /*
34  *+SNOTICE
35  *
36  *      RESTRICTED CONFIDENTIAL INFORMATION:
37  *      
38  *      The information in this document is subject to special
39  *      restrictions in a confidential disclosure agreement between
40  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
41  *      document outside HP, IBM, Sun, USL, SCO, or Univel without
42  *      Sun's specific written approval.  This document and all copies
43  *      and derivative works thereof must be returned or destroyed at
44  *      Sun's request.
45  *
46  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
47  *
48  *+ENOTICE
49  */
50
51 ///////////////////////////////////////////////////////////////////////////////
52 //////////////////////////////////////////////////////////////////////////////
53 //         This example code is from the book:
54 //
55 //           Object-Oriented Programming with C++ and OSF/Motif
56 //         by
57 //           Douglas Young
58 //           Prentice Hall, 1992
59 //           ISBN 0-13-630252-1 
60 //
61 //         Copyright 1991 by Prentice Hall
62 //         All Rights Reserved
63 //
64 //  Permission to use, copy, modify, and distribute this software for 
65 //  any purpose except publication and without fee is hereby granted, provided 
66 //  that the above copyright notice appear in all copies of the software.
67 ///////////////////////////////////////////////////////////////////////////////
68 //////////////////////////////////////////////////////////////////////////////
69
70
71 ///////////////////////////////////////////////////////////
72 // QuestionDialogManager.h
73 //////////////////////////////////////////////////////////
74 #ifndef QuestionDIALOGMANAGER_H
75 #define QuestionDIALOGMANAGER_H
76
77 #include "DialogManager.h"
78
79 class QuestionDialogManager : public DialogManager {
80     
81   protected:
82     
83     Widget createDialog ( Widget );
84     
85   public:
86     
87     QuestionDialogManager ( char * );
88 };
89
90 #ifdef DEAD_WOOD
91 extern QuestionDialogManager *theQuestionDialogManager;
92 #endif /* DEAD_WOOD */
93
94 #endif