// file: $isip/class/search/SearchSymbol/ssym_03.cc // version: $Id: ssym_03.cc 7382 2001-09-19 05:24:22Z jelinek $ // // isip include files // #include "SearchSymbol.h" #include // method: read // // arguments: // Sof& sof: (input) sof file object // int32 tag: (input) sof object instance tag // const String& name: (input) sof object instance name // // return: a bool8 indicating status // // this method has the object read itself from an Sof file // bool8 SearchSymbol::read(Sof& sof_a, int32 tag_a, const String& name_a) { // get the instance of the object from the Sof file // if (!sof_a.find(name_a, tag_a)) { return false; } // read the actual data from the sof file // if (!readData(sof_a)) { return false; } // exit gracefully // return true; }