/*
 * 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.
 */
/****************************************************************
 * File: VnsP.h
 * Date: 05/02/91
 *
 * Description:
 *   This file is the private header file for the VNS library.
 *
 * Notes:
 * - This file was originally called "vns.h" in the old version.
 * - The files "note.h", "page.h", and "object.h" have been
 *   included into this file and removed.
 * - The entire VNS library is built around the context structure
 *   located at the bottom of this file. All (or most) of the
 *   C files include this file and access this context directly.
 *   This approach is really bad for modularity in that none of
 *   the files can be split off into submodules since they all
 *   access this common information.
 *
 * Revisions:
 ****************************************************************/
#ifndef _VNSP_H_
#define _VNSP_H_

/* include public header file */
#include "Vns.h"

#include <Vt.h>

#define PUBLIC
#define PRIVATE static

#endif /* _VNSP_H_ */
