| 703 | } |
| 704 | |
| 705 | AutoConfig *CPlugin::GetConfig(size_t i) |
| 706 | { |
| 707 | if (i >= GetConfigCount()) |
| 708 | { |
| 709 | return NULL; |
| 710 | } |
| 711 | |
| 712 | return m_configs[i]; |
| 713 | } |
| 714 | |
| 715 | void CPlugin::AddConfig(bool autoCreate, const char *cfg, const char *folder) |
| 716 | { |
no outgoing calls
no test coverage detected