---------------------------------------------------------------------------
| 65 | } |
| 66 | //--------------------------------------------------------------------------- |
| 67 | bool TSaveParamsINI::SectionExists(const AnsiString Section) |
| 68 | { |
| 69 | if( !f ) |
| 70 | Load(fFile); |
| 71 | if( f ) |
| 72 | return f->SectionExists(Section.c_str()); |
| 73 | else |
| 74 | return false; |
| 75 | } |
| 76 | //--------------------------------------------------------------------------- |
| 77 | bool TSaveParamsINI::ValueExists(const AnsiString Section, const AnsiString name) |
| 78 | { |
nothing calls this directly
no outgoing calls
no test coverage detected