#ifndef _ASSISTOR_LIST_H #define _ASSISTOR_LIST_H /* */ #ifndef lint /* static char rcsid[] = "@(#) $Header: /cs/research/mice/starship/src/local/CVS_repository/vic/assistor-list.h,v 1.2 1999/01/15 10:39:32 ucackha Exp $ (LBL)"; */ #endif #include #include #include #include "Tcl.h" class AssistorList : public TclObject { struct wassistor { char *name; char *formats; } *wassistors; int nrofwassistors; public: AssistorList() : TclObject("assistorlist") { } int command(int argc,const char *const*argv); void register_assistor(char *name,char *formats); }; #endif _ASSISTOR_LIST_H