// // vxi_vme.h // #ifndef _VXIVME_H #define _VXIVME_H #define VXINT #include class Vxi_vme { public : static Vxi_vme* Instance (); int init (); void end (); uint16 *get_baseAddrMap (uint32 address); protected : Vxi_vme (); private : static Vxi_vme* _instance; unsigned long _vmeWindow; }; #endif _VXIVME_H