| 31 | } |
| 32 | |
| 33 | bool OpenOut( const wxString &fullPath ) |
| 34 | { |
| 35 | sFileOut.Open( fullPath ); |
| 36 | if ( sFileOut.IsOpened() ) |
| 37 | sFileOut.Clear(); |
| 38 | else { |
| 39 | sFileOut.Create(); |
| 40 | sFileOut.Open( fullPath ); |
| 41 | } |
| 42 | return sFileOut.IsOpened(); |
| 43 | } |
| 44 | |
| 45 | void Output( const wxString &string ) |
| 46 | { |