pkg://Xarm-1.2.7.tar.gz:255173/
Xarm-1.2.7/
include/
Xarm/Constraint.h
downloads
/* $Id: Constraint.h,v 1.1.1.1 1997/03/19 13:32:20 glgay Exp $ */
/*
Copyright (C) 1993, 1994 Jettero Heller
Copyright (C) 1994, 1995 Peter Williams
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License
version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING. If not,
write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA.
*/
#if !defined(_XARM_CONSTRAINT_H_)
#define _XARM_CONSTRAINT_H_
/* ======================================================================= */
/* Include(s): */
#include <Xarm/Composite.h>
class ConstraintClass : public CompositeClass {
protected:
ConstraintClass() {}
virtual WidgetClass classPointer() { return constraintWidgetClass; }
virtual _XtString className() { return (_XtString) "Constraint"; }
};
#endif