0
|
1 // Filename : db.h
|
|
2 // Last Change: 21-Jul-2013.
|
|
3 //
|
|
4 #ifndef __DB_H__
|
|
5 #define __DB_H__
|
|
6
|
|
7 #include "common.h"
|
|
8
|
|
9 wxString GetHhsNameByNo( wxString hhsno );
|
|
10 wxArrayString GetHhsByKana( wxString kana, bool fuzzy );
|
|
11 wxArrayString GetPathByHhsNo( wxString hhsno );
|
|
12 wxArrayString GetCcnDate( void );
|
|
13 wxArrayString GetCcnByDate( wxString date );
|
|
14 wxArrayString GetHhsNoByCcn( wxString ccn, wxString date );
|
|
15 wxArrayString GetPathByHhsNo( wxString hhs );
|
|
16 void UpdateIndex( wxArrayString paths );
|
|
17
|
|
18 #endif //__DB_H__
|
|
19
|