vs_types.h
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:1k
- /* Copyright (C) 1998, 1999 State University of New York at Stony Brook
- Author: Andrew V. Shuvalov ( andrew@ecsl.cs.sunysb.edu )
- Software license is located in file "COPYING"
- */
- #ifndef _vs_types_h_
- #define _vs_types_h_
- class MainWindow;
- class TextWindow;
- class DbConnection;
- class WordDb;
- class WordInText;
- #include "string_of_text.h"
- /** map of text windows */
- typedef map< int, TextWindow * > textWindowsMapT;
- /** red-black tree of words */
- typedef map< string, WordInText * > WordMapT;
- /** complete text of movie */
- typedef vector< StringOfText > TextOfMovieT;
- /** map of all movies texts */
- typedef map< int, TextOfMovieT * > AllTextsMapT;
- #endif // _vs_types_h_