⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 namemap.h

📁 这是一个从音频信号里提取特征参量的程序
💻 H
字号:
// file: $isip/class/io/NameMap/NameMap.h// version: $Id: NameMap.h,v 1.6 2001/05/03 15:50:51 duncan Exp $//// make sure definitions are only made once//#ifndef ISIP_NAME_MAP#define ISIP_NAME_MAP// isip include files//#ifndef ISIP_CHECKSUM#include <Checksum.h>#endif#ifndef ISIP_SOF_PARSER#include <SofParser.h>#endif// NameMap: a mapping from integers to SysString objects. this class is// used to give SysString names to enumerated values. this class limits// the size of the list to be less than an unsigned short int (65536).//class NameMap {  //---------------------------------------------------------------------------  //  // public constants  //  //---------------------------------------------------------------------------public:    // define the class name  //  static const SysString CLASS_NAME;  // define constraints on the size of the map  //  static const ulong MAX_LENGTH = (ulong)Integral::TWO_EXP16;  //----------------------------------------  //  // i/o related constants  //  //----------------------------------------    //----------------------------------------  //  // default values and arguments  //  //----------------------------------------  // default values  //    // default arguments to methods  //  static const unichar DELIM_CHR = L',';    //----------------------------------------  //  // declare some globally useful NameMaps  //  //----------------------------------------    // a NameMap for colors (Integral::COLOR)  //  static const NameMap COLOR_MAP;  // a NameMap for allocation modes (DstrBase::ALLOCATION)  //  static const NameMap ALLOCATION_MAP;  //----------------------------------------  //  // error codes  //  //----------------------------------------      static const long ERR = 10400;  static const long ERR_RANGE = 10401;  static const long ERR_NOTFND = 10402;  static const long ERR_CHKSUM = 10403;    //---------------------------------------------------------------------------  //  // protected data  //  //---------------------------------------------------------------------------protected:  // hold all names as elements in a vector of SysStrings.  // the forward lookup will be very fast, backwards will be slower.  //  SysString* names_d;  long size_d;    // use a checksum to represent the name map when writing an index  //  ushort checksum_d;  // static checksum object  //  static Checksum cksm_d;    // the debug level  //  static Integral::DEBUG debug_level_d;  //---------------------------------------------------------------------------  //  // required public methods  //  //---------------------------------------------------------------------------public:  // method: name   //  static const SysString& name() {    return CLASS_NAME;  }    // other static methods  //  static boolean diagnose(Integral::DEBUG debug_level);  // method: setDebug   //  static boolean setDebug(Integral::DEBUG debug_level) {    debug_level_d = debug_level;    return true;  }  // other debug methods  //    boolean debug(const unichar* message) const;    // constructor(s)/destructor  //  ~NameMap();  // the default and copy constructors are private since you must  // supply a value string when you construct the object.   //  // the assign and operator= methods are ommitted since they are not  // useful for this object  //  // i/o methods:  //  these methods are omitted because SofSymbolTable can not write itself  //  to an sof file  //  // equality methods:  //  these methods are omitted because they are not useful for  //  SofSymbolTable objects  //  // memory management methods:  //  new and delete are omitted because memory for SofSymbolTable objects is  //  not managed by the MemoryManager class. the clear method is ommited  //  since it is not useful for the class.  //---------------------------------------------------------------------------  //  // class-specific public methods:  //  extensions to required methods  //  //---------------------------------------------------------------------------  // method: constructor  //  NameMap(const SysString& arg, const unichar delim = DELIM_CHR) {    assign(arg, delim);  }  // method: constructor  //  NameMap(const unichar* arg, const unichar delim = DELIM_CHR) {    SysString str(arg);    assign(str, delim);  }    //---------------------------------------------------------------------------  //  // class-specific public methods:  //  get methods  //  //---------------------------------------------------------------------------  // get methods:  //  getName returns the name corresponding to the specified index  //  getIndex returns the index cooresponding to the specified name  //  const SysString& getName(ushort index) const;  long getIndex(const SysString& name) const;  // method: operator()  //  (SysString&) conversion operator  //  const SysString& operator()(ushort index) const {    return getName(index);  }  // method: operator()  //  (ushort) conversion operator  //  long operator()(const SysString& name) const {    return getIndex(name);  }  //---------------------------------------------------------------------------  //  // class-specific public methods:  //  special i/o methods (used inside the i/o methods of other classes)  //  //---------------------------------------------------------------------------  // determine the sofSize of an element in this NameMap  //  long elementSofSize() const;    // direct access to Sof files  //  boolean readElementData(long& value, Sof& sof, const SysString& pname,			  long size = SofParser::FULL_OBJECT,			  boolean param = true,			  boolean nested = false) const;  boolean writeElementData(Sof& sof, const SysString& pname,			   ushort index) const;  // method to display all possible enumeration choices  //  boolean displayChoices(const SysString& bad_param) const;  //---------------------------------------------------------------------------  //  // private methods  //  //---------------------------------------------------------------------------private:  // the default and copy constructors are private since you must  // supply a value string when you construct the object.   //  NameMap();  NameMap(const NameMap& arg);  NameMap& operator=(const NameMap& arg);  // this method tokenizes the input string into the NameMap values  //  boolean assign(const SysString& arg, unichar delim = DELIM_CHR);  // checksum methods  //  boolean computeChecksum();};// end of include file//#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -