For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.9 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ClassDiagrams
  5. {
  6. public class PHPExcel_Writer_Serialized : PHPExcel_Writer_IWriter
  7. {
  8. #region IWriter Members
  9. public PHPExcel writes
  10. {
  11. get
  12. {
  13. throw new Exception("The method or operation is not implemented.");
  14. }
  15. set
  16. {
  17. throw new Exception("The method or operation is not implemented.");
  18. }
  19. }
  20. #endregion
  21. }
  22. public class PHPExcel_Writer_CSV : PHPExcel_Writer_IWriter
  23. {
  24. #region IWriter Members
  25. public PHPExcel writes
  26. {
  27. get
  28. {
  29. throw new Exception("The method or operation is not implemented.");
  30. }
  31. set
  32. {
  33. throw new Exception("The method or operation is not implemented.");
  34. }
  35. }
  36. #endregion
  37. }
  38. public class PHPExcel_Writer_Excel5 : PHPExcel_Writer_IWriter
  39. {
  40. #region IWriter Members
  41. public PHPExcel writes
  42. {
  43. get
  44. {
  45. throw new Exception("The method or operation is not implemented.");
  46. }
  47. set
  48. {
  49. throw new Exception("The method or operation is not implemented.");
  50. }
  51. }
  52. #endregion
  53. }
  54. public class PHPExcel_Writer_HTML : PHPExcel_Writer_IWriter
  55. {
  56. #region IWriter Members
  57. public PHPExcel writes
  58. {
  59. get
  60. {
  61. throw new Exception("The method or operation is not implemented.");
  62. }
  63. set
  64. {
  65. throw new Exception("The method or operation is not implemented.");
  66. }
  67. }
  68. #endregion
  69. }
  70. }