comparison src/kaigo/horori/searcher/include/utils.h @ 56:7396e7407abd

searcher version up.
author pyon@macmini
date Sat, 27 Jun 2020 16:25:13 +0900
parents 638e1ad05cae
children
comparison
equal deleted inserted replaced
55:4877160411cc 56:7396e7407abd
1 // Filename : utils.h 1 // Filename : utils.h
2 // Last Change: 2020-04-24 ‹à 14:33:33. 2 // Last Change: 2020-06-26 ‹à 09:09:48.
3 // 3 //
4 #pragma once 4 #pragma once
5 5
6 #include <wx/wx.h> 6 #include <wx/wx.h>
7 7
8 wxRect Geo2Rect(wxString geo); 8 wxRect Geo2Rect(wxString geo);
9 wxRect ZeroRect(); 9 wxRect ZeroRect();
10 bool TarDir(wxString dir, wxString tarfile); 10 bool TarDir(wxString dir, wxString tarfile);
11 bool Gzip(wxString infile, wxString gzfile); 11 bool Gzip(wxString infile, wxString gzfile);
12 wxString XoR(wxString s, int x); 12 wxString XoR(wxString s, int x);
13 bool IsHiragana(wxString s);
14 bool IsKatakana(wxString s);
15 wxString Hiragara2Katakana(wxString s);
13 16