-
Notifications
You must be signed in to change notification settings - Fork 0
/
AvFormComp.cc
109 lines (100 loc) · 2.88 KB
/
AvFormComp.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//# Copyright (C) 1995-2000 Board of Trustees of the University of Illinois
//#
//# This software, both binary and source, is copyrighted by The
//# Board of Trustees of the University of Illinois. Ownership
//# remains with the University. You should have received a copy
//# of a licensing agreement with this software. See the file
//# "AIPSVIEW_COPYRIGHT", or contact the University at this address:
//#
//# The NCSA AipsView Visualization System
//# National Center for Supercomputing Applications
//# University of Illinois
//# 405 North Mathews Ave.
//# Urbana, IL 61801
//# --------------------------------------------------
//
// $Header: /home/cvs/aips++/code/trial/apps/aipsview/Attic/AvFormComp.cc,v 19.0 2003/07/16 05:47:20 aips2adm Exp $
//
// $Log: AvFormComp.cc,v $
// Revision 19.0 2003/07/16 05:47:20 aips2adm
// exhale: Base release 19.000.00
//
// Revision 18.0 2002/06/07 21:29:01 aips2adm
// exhale: Base release 18.000.00
//
// Revision 17.0 2001/11/12 19:42:31 aips2adm
// exhale: Base release 17.000.00
//
// Revision 16.0 2001/05/03 01:42:38 aips2adm
// exhale: Base release 16.000.00
//
// Revision 15.0 2000/10/26 17:10:44 aips2adm
// exhale: Base release 15.000.00
//
// Revision 14.1 2000/07/18 16:54:44 hravlin
// Changed className() to return const char *.
//
// Revision 14.0 2000/03/23 16:08:24 aips2adm
// exhale: Base release 14.000.00
//
// Revision 13.0 1999/08/10 18:40:12 aips2adm
// exhale: Base release 13.000.00
//
// Revision 12.0 1999/07/15 00:23:02 aips2adm
// exhale: Base release 12.000.00
//
// Revision 11.0 1998/10/03 07:00:17 aips2adm
// exhale: Base release 11.000.00
//
// Revision 10.0 1998/07/20 17:54:13 aips2adm
// exhale: Base release 10.000.00
//
// Revision 9.0 1997/08/25 21:28:15 aips2adm
// exhale: Base release 09.000.00
//
// Revision 8.0 1997/02/20 03:17:16 aips2adm
// exhale: Base release 08.000.00
//
// Revision 7.2 1996/12/12 06:18:16 droberts
// Final update from monet archive.
//
// Revision 1.1 1996/07/11 21:31:21 pixton
// Automated Checkin
//
// Revision 1.4 1996/06/18 18:46:01 pixton
// Copyright Update
//
// Revision 1.3 1995/09/20 20:03:06 baker
// Release Beta 1.0
//
// Revision 1.3 1995/09/20 01:56:34 baker
// Release Beta 1.0
//
// Revision 1.2 1995/08/24 21:27:08 baker
// *** empty log message ***
//
// Revision 1.1 1995/03/16 19:45:22 pixton
// Initial revision
//
//
//---------------------------------------------------------------------------
#include <Xm/Form.h>
#include "AvFormComp.h"
AvFormComp::AvFormComp (Widget parent, int buildInsideParent) :
AvUserComp (parent, buildInsideParent)
{
baseWidget_ = XtVaCreateManagedWidget
("", xmFormWidgetClass, parentWidget_, NULL);
}
const char * AvFormComp::className () const
{
return ("AvFormComp");
}
Widget AvFormComp::baseWidget()
{
return (baseWidget_);
}
AvFormComp::~AvFormComp ()
{
}