Mercurial > mercurial > hgweb_searcher03.cgi
annotate include/marksheet.h @ 16:1ba97995f642
Get/Put DB files to shared-directory.
author | pyon@macmini |
---|---|
date | Thu, 19 Jun 2014 18:46:11 +0900 |
parents | 52958cd4a073 |
children |
rev | line source |
---|---|
2 | 1 // Filename : marksheet.h |
12
52958cd4a073
Implement Force Mask button in Batch Print Mode.
pyon@macmini
parents:
4
diff
changeset
|
2 // Last Change: 13-May-2014. |
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 ); |
12
52958cd4a073
Implement Force Mask button in Batch Print Mode.
pyon@macmini
parents:
4
diff
changeset
|
12 void GetScore( float* z, long* l, wxString file ); |
2 | 13 wxString GetHhsName( wxString& hhsno ); |
14 int IsHhsno( wxString& hhsno, wxString& name ); | |
15 int GetMarksheetVersion( wxString file ); | |
16 | |
17 #endif // __MARKSHEET_H__ | |
18 |