// // Basic Summary: clasical pair of (key,data) // // Include file for pair definition // // Copyright: // // Copyright 1993 Ron Burback // Copyright 1993 Objects Plus // All rights reserved // // // Data elemnents: pointer to key, pointer to data // // // Methods: // // The methods are // pair(); - standard constructor // ~pair(); - standard disctructor // // Macro definitions: none // // // Class definition: // // pair // #ifndef _OP_PAIR #define _OP_PAIR class pair { public: static char * version ; void * key ; void * data ; pair(); ~pair(); }; #endif