Fix typo in license headers
[oweals/cde.git] / cde / programs / dtmail / include / DtMail / AntiCheckBoxUiItem.hh
1 /* $XConsortium: AntiCheckBoxUiItem.hh /main/4 1996/04/21 19:44:20 drk $ */
2 /*
3  *+SNOTICE
4  *
5  *      RESTRICTED CONFIDENTIAL INFORMATION:
6  *      
7  *      The information in this document is subject to special
8  *      restrictions in a confidential disclosure agreement bertween
9  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
10  *      document outside HP, IBM, Sun, USL, SCO, or Univel wihtout
11  *      Sun's specific written approval.  This documment and all copies
12  *      and derivative works thereof must be returned or destroyed at
13  *      Sun's request.
14  *
15  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
16  *
17  *+ENOTICE
18  */
19
20 #include <stdlib.h>
21 #include <X11/Intrinsic.h>
22 #include "CheckBoxUiItem.hh"
23
24 #ifndef _ANTICHECKBOXUIITEM_HH
25 #define _ANTICHECKBOXUIITEM_HH
26
27 // CLASS AntiCheckBoxUiItem
28 // derived class for prop sheet glue items for CheckBox
29 ///////////////////////////////////////////////////////////
30 class AntiCheckBoxUiItem : public CheckBoxUiItem {
31   
32 public:
33   AntiCheckBoxUiItem(Widget w, int source, char *search_key);
34   virtual ~AntiCheckBoxUiItem(){;}; // we don't alloc any memory
35 #ifdef DEAD_WOOD
36   virtual int getType(){ return _ANTICHECKBOX_ITEM; };
37   virtual int getSource(){ return data_source; };
38 #endif /* DEAD_WOOD */
39   virtual void writeFromUiToSource();
40   virtual void writeFromSourceToUi();
41
42 private:
43   
44 #ifdef DEAD_WOOD
45   int data_source;
46 #endif /* DEAD_WOOD */
47
48 };
49
50 #endif