pluginconfigdebugprofilefixed.c 641 B

1234567891011121314151617181920212223
  1. class PluginConfigDebugProfileFixed extends PluginConfigDebugProfile
  2. {
  3. const string POSITIONS_LIST = "console_positions";
  4. const string POSITIONS_LIST_ENOCH = "console_positions_enoch";
  5. const string SUB_PARAM_POS_NAME = "name";
  6. const string SUB_PARAM_POS_VEC = "pos";
  7. //========================================
  8. // PluginConfigDebugProfileFixed
  9. //========================================
  10. void PluginConfigDebugProfileFixed()
  11. {
  12. m_ReadOnly = true;
  13. }
  14. //========================================
  15. // GetFileName
  16. //========================================
  17. override string GetFileName()
  18. {
  19. return CFG_FILE_FIXED_PROFILE;
  20. }
  21. }