vs_types.h
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. /* Copyright (C) 1998, 1999 State University of New York at Stony Brook
  2.    Author: Andrew V. Shuvalov ( andrew@ecsl.cs.sunysb.edu )
  3.    Software license is located in file "COPYING"
  4. */
  5. #ifndef _vs_types_h_
  6. #define _vs_types_h_
  7. class MainWindow;
  8. class TextWindow;
  9. class DbConnection;
  10. class WordDb;
  11. class WordInText;
  12. #include "string_of_text.h"
  13. /** map of text windows */
  14. typedef map< int, TextWindow * > textWindowsMapT;
  15. /** red-black tree of words */
  16. typedef map< string, WordInText * > WordMapT;
  17. /** complete text of movie */
  18. typedef vector< StringOfText > TextOfMovieT;
  19. /** map of all movies texts */
  20. typedef map< int, TextOfMovieT * > AllTextsMapT;
  21. #endif    //   _vs_types_h_