Bez popisu

PHPExcel_Writer_Serialized.cs 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. }