Пример #1
0
        public void save(string full_path)
        {
            this.saveDB();

            this.m_Writer.save(full_path);
            this.m_Writer.close();
            this.m_Writer = null;
        }
Пример #2
0
 protected virtual void onSerialize(TezWriter writer)
 {
     writer.write(TezReadOnlyString.CID, this.CID);
     writer.write(TezReadOnlyString.NID, this.NID);
     if (this.category != null)
     {
         writer.write(TezReadOnlyString.CTG_FT, this.category.finalToken.toName);
     }
 }
Пример #3
0
 public void newSave()
 {
     this.m_Writer = new TezJsonWriter();
 }
Пример #4
0
 protected virtual void onSerialize(TezWriter writer)
 {
 }
Пример #5
0
 public void serialize(TezWriter writer)
 {
     this.onSerialize(writer);
 }