/*
 * Copyright 1990 by Baylor College of Medicine ALL RIGHTS RESERVED. 
 *
 * This program is subject to a license agreement between 
 * Baylor College of Medicine and MIT. Any use inconsistent with
 * said license and any use by persons other than the faculty, 
 * students and staff at MIT or any use on a computer not operated 
 * as part of the Athena Computing Environment (ACE) is expressly 
 * prohibited.
 */
#ifndef _TESTP_H
#define _TESTP_H

#include "Test.h"

typedef struct
{
	int dummy ;
} TestClassPart ;

typedef struct _TestClassRec
{
    CoreClassPart        core_class ;
    TestClassPart test_class ;

} TestClassRec,*TestWidgetClass ;

extern TestClassRec testClassRec ;

/*
 *  Widget instance structure declaration
 */

typedef struct
{
	Widget next ;
} TestPart ;

typedef struct _TestRec
{
    CorePart core ;
    TestPart    test ;
} TestRec ;

#endif /* _TESTP_H */
