Mercurial > mercurial > hgweb_searcher03.cgi
annotate include/marksheet.h @ 4:fdba695b99f1
More fast ( read from DB ).
Improve the precision of marksheet judgement.
author | pyon@macmini |
---|---|
date | Wed, 11 Sep 2013 19:09:14 +0900 |
parents | c066fde99517 |
children | 52958cd4a073 |
rev | line source |
---|---|
2 | 1 // Filename : marksheet.h |
4 | 2 // Last Change: 11-Sep-2013. |
2 | 3 // |
4 #ifndef __MARKSHEET_H__ | |
5 #define __MARKSHEET_H__ | |
6 | |
7 #include "wx/wxsqlite3.h" | |
8 | |
9 bool IsBlack( int r, int g, int b ); | |
10 wxString GuessHhs( wxString& file ); | |
4 | 11 bool IsMarksheet( wxString& file, double zmin, double zmax, long lmin, long lmax ); |
2 | 12 wxString GetHhsName( wxString& hhsno ); |
13 int IsHhsno( wxString& hhsno, wxString& name ); | |
14 int GetMarksheetVersion( wxString file ); | |
15 | |
16 #endif // __MARKSHEET_H__ | |
17 |