| 1 |
/* |
| 2 |
* FeliCa2Money |
| 3 |
* |
| 4 |
* Copyright (C) 2001-2007 Takuya Murakami |
| 5 |
* |
| 6 |
* This program is free software; you can redistribute it and/or modify |
| 7 |
* it under the terms of the GNU General Public License as published by |
| 8 |
* the Free Software Foundation; either version 2 of the License, or |
| 9 |
* (at your option) any later version. |
| 10 |
* |
| 11 |
* This program is distributed in the hope that it will be useful, |
| 12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 |
* GNU General Public License for more details. |
| 15 |
* |
| 16 |
* You should have received a copy of the GNU General Public License |
| 17 |
* along with this program; if not, write to the Free Software |
| 18 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 |
*/ |
| 20 |
|
| 21 |
//--------------------------------------------------------------------------- |
| 22 |
|
| 23 |
#ifndef SfcPeepH |
| 24 |
#define SfcPeepH |
| 25 |
//--------------------------------------------------------------------------- |
| 26 |
/** |
| 27 |
@brief SFCPeep �����������N���X |
| 28 |
*/ |
| 29 |
class SFCPeep { |
| 30 |
private: |
| 31 |
AnsiString SFCPeepPath; ///< SFCPeep ���t���p�X�� |
| 32 |
AnsiString TempFile; ///< �e���|�����t�@�C���� |
| 33 |
TStringList *lines; ///< SFCPeep ���e�o���s |
| 34 |
|
| 35 |
public: |
| 36 |
SFCPeep(void); |
| 37 |
~SFCPeep(); |
| 38 |
|
| 39 |
/// SFCPeep ���p�X������ |
| 40 |
void SetSfcPeepPath(AnsiString path) { SFCPeepPath = path; } |
| 41 |
|
| 42 |
/// �e���|�����t�@�C���p�X�������� |
| 43 |
void SetTempFile(AnsiString path) { TempFile = path; } |
| 44 |
|
| 45 |
int Execute(AnsiString arg); |
| 46 |
|
| 47 |
/// lines ������ |
| 48 |
TStringList * Lines(void) { return lines; } |
| 49 |
}; |
| 50 |
|
| 51 |
extern class SFCPeep *SfcPeep; |
| 52 |
|
| 53 |
#endif |