/* %Z%%M% %I% %E% */ /* * Copyright (c) 1992, 1995 by Wayne C. Gramlich. * All rights reserved. * * Permission to use, copy, modify, distribute, and sell this software * for any purpose is hereby granted without fee provided that the above * copyright notice and this permission are retained. The author makes * no representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. */ /* This file declares the object typedefs: */ #ifndef OBJECT_TYPES_H #define OBJECT_TYPES_H typedef struct Object_struct *Object; typedef struct Object_entry_struct *Object_entry; typedef struct Object_need_struct *Object_need; typedef struct Object_ref_struct *Object_ref; typedef struct Object_table_struct *Object_table; #endif /* OBJECT_TYPES_H */