17 override string GetFileName()
19 Error(
"Cannot call GetFileName on Base class PluginLocalHistoryBase" );
23 void AddNewLine(
string text)
26 text.Replace(
"\n",
"\\n" );
27 m_FileContent.Insert(text);
35 for (
int i = 0; i < m_FileContent.Count(); i++)
37 string history_record = m_FileContent.Get(i);
38 history_record.Replace(
"\\n",
"\n");
39 console_history.Insert( history_record );
41 return console_history;
46 int count = m_FileContent.Count();
51 ret = m_FileContent.Get(count - 1);