/trunk/Demo.Mmose.GameServer/R.O.S.E.Server/R.O.S.E.Server/Common/Database/Interface.cs

# · C# · 40 lines · 19 code · 3 blank · 18 comment · 0 complexity · 4a638f87e4c42dc54582025c4b2ec17f MD5 · raw file

  1. #region zh-CHS 版权所有 (C) 2006 - 2006 DemoSoft Corporation. 保留所有权利 | en Copyright (C) 2006 - 2006 DemoSoft Corporation. All Rights Reserved.
  2. // COPYRIGHT NOTES
  3. // ---------------
  4. // Program.cs : interface for the Program class.
  5. //
  6. // This file is a part of the Demo Toolkit for .NET.
  7. // 2006-2006 Demo Software, All Rights Reserved.
  8. //
  9. // This source code can only be used under the terms and conditions
  10. // outlined in the accompanying license agreement.
  11. //
  12. // mailto:caihuanqing@hotmail.com
  13. #region zh-CHS 包含名字空间 | en Include namespace
  14. using System;
  15. using System.IO;
  16. using System.Text;
  17. using System.Collections.Generic;
  18. #endregion
  19. namespace Demo_R.O.S.E.Database
  20. {
  21. #region zh-CHS 接口 | en Interface
  22. /// <summary>
  23. /// 用于数据库的IDumpable接口
  24. /// </summary>
  25. internal interface IDumpable
  26. {
  27. #region zh-CHS 接口 | en Interface
  28. /// <summary>
  29. ///
  30. /// </summary>
  31. /// <param name="output"></param>
  32. void Dump( TextWriter output );
  33. #endregion
  34. }
  35. #endregion
  36. }
  37. #endregion