PHPExcel_IOFactory.cs 853 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ClassDiagrams
  5. {
  6. public class PHPExcel_IOFactory
  7. {
  8. public PHPExcel_Reader_IReader createsReader
  9. {
  10. get
  11. {
  12. throw new System.NotImplementedException();
  13. }
  14. set
  15. {
  16. }
  17. }
  18. public PHPExcel_Writer_IWriter createsWriter
  19. {
  20. get
  21. {
  22. throw new System.NotImplementedException();
  23. }
  24. set
  25. {
  26. }
  27. }
  28. public PHPExcel_Writer_IWriter createWriter()
  29. {
  30. throw new System.NotImplementedException();
  31. }
  32. public PHPExcel_Reader_IReader createReader()
  33. {
  34. throw new System.NotImplementedException();
  35. }
  36. }
  37. }