GDocument.cs
上传用户:szltgg
上传日期:2019-05-16
资源大小:604k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

C#

  1. /*
  2. * Copyright (c) 2005 Poderosa Project, All Rights Reserved.
  3. * $Id: GDocument.cs,v 1.2 2005/04/20 08:45:46 okajima Exp $
  4. */
  5. using System;
  6. using System.IO;
  7. using System.Collections;
  8. using System.Drawing;
  9. using System.Text;
  10. using Poderosa.Toolkit;
  11. using Poderosa.Forms;
  12. namespace Poderosa.Text
  13. {
  14. /// <summary>
  15. /// 僪僉儏儊儞僩偺儀乕僗僋儔僗丅偙偙偐傜攈惗偟偰儘僌梡偲僞乕儈僫儖梡偺僪僉儏儊儞僩偑偁傞丅
  16. /// GLine偺僐儗僋僔儑儞傪曐桳偡傞丅
  17. /// </summary>
  18. internal abstract class GDocument {
  19. protected GDocument() {
  20. }
  21. public abstract void AddLine(GLine line);
  22. /// <summary>
  23. /// 峴悢庢摼
  24. /// </summary>
  25. public abstract int Size {
  26. get;
  27. }
  28. public abstract void Dump(string title);
  29. }
  30. }