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.

41 lines
894 B

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