~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/spinbox/Geometry.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright 1994 Alastair Gourlay
 
3
 *
 
4
 * Permission to use, copy, modify, and distribute this software and its
 
5
 * documentation for any purpose and without fee is hereby granted, provided 
 
6
 * that the above copyright notice appear in all copies and that both that 
 
7
 * copyright notice and this permission notice appear in supporting 
 
8
 * documentation.
 
9
 */
 
10
 
 
11
/*
 
12
 *
 
13
 * Geometry.h - XmpGeometry Public header
 
14
 *
 
15
 */
 
16
 
 
17
#ifndef _XmpGeometry_h
 
18
#define _XmpGeometry_h
 
19
 
 
20
#include <Xm/Xm.h>
 
21
 
 
22
#ifdef __cplusplus
 
23
extern "C" {
 
24
#endif
 
25
 
 
26
#ifndef XmpIsGeometry
 
27
#define XmpIsGeometry(w) XtIsSubclass(w, xmpGeometryWidgetClass)
 
28
#endif
 
29
 
 
30
externalref WidgetClass xmpGeometryWidgetClass;
 
31
 
 
32
typedef struct _XmpGeometryClassRec *XmpGeometryWidgetClass;
 
33
typedef struct _XmpGeometryRec *XmpGeometryWidget;
 
34
 
 
35
#ifdef __cplusplus
 
36
}
 
37
#endif
 
38
 
 
39
#endif /* _XmpGeometry_h */
 
40