ToglHash.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:0k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // ToglHash.h            keeps track of Togl widgets by name for PlyView
  2. // created 5/29/98       magi
  3. #ifndef _toglhash_h_
  4. #define _toglhash_h_
  5. #include <tcl.h>
  6. struct Togl;
  7. class ToglHash
  8. {
  9.  public:
  10.   ToglHash();
  11.   ~ToglHash();
  12.   struct Togl* FindTogl (char * name);
  13.   void AddToHash (char* name, struct Togl* togl);
  14.  private:
  15.   Tcl_HashTable hashTable;
  16. };
  17. #endif //_toglhash_h_