home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / database / ooed / ooed.doc < prev    next >
Encoding:
Text File  |  1991-03-27  |  2.0 KB  |  45 lines

  1.                                 OOED
  2.                             By Bruce Ide
  3.  
  4. OOED is a set of object oriented data editor classes. I undertook writing
  5. it partially because I wanted a better data entry interface than scanf and
  6. partly because I wanted to experiment with C++ features such as late binding,
  7. multiple inheritance, and virtual functions.
  8.  
  9. OOED should be useful in circumstances where you want a quick and dirty
  10. data entry screen (Ex: Getting names, phone numbers, etc) and you don't
  11. feel like writing it yourself or shelling out a few hundred bucks for a
  12. user interface. You can also derive your own classes (Maybe a EDFORM
  13. class?) or modify the ones included in this file.
  14.  
  15. OOED took about two days to write and another day to debug. There may
  16. still be bugs in it -- I don't guarantee my work -- but I doubt it'll
  17. crash your system either. I also take no responsibility for any damages
  18. to either hardware or software caused directly or indirectly by the use
  19. of these classes. For all you know, some fourteen-year-old hacker with
  20. nothing better to do has modified them to wipe your hard disk when you
  21. run them. The upshot of this being 1) Know what this source does BEFORE
  22. you run it and 2) I don't force you to use these classes so it's not
  23. *MY* fault if they cause something to die.
  24.  
  25. OOED is public domain. If you want to use these classes, go ahead. If
  26. you have a problem, you can write me. If I'm feeling good that day, I
  27. might even reply :-) I'd appreciate it if you gave credit where credit
  28. is due, but I don't even require that. I do request that if you give
  29. copies of OOED that you keep the files together. More on that later.
  30.  
  31. Direct inquires, donations, job offers, etc to:
  32. Bruce Ide Jr
  33. 5789 Carriage Barn Lane
  34. Montgomery, Al 36116
  35.  
  36.  
  37. The files that go with this set of classes:
  38. ooed.hpp   -- The ooed header file
  39. ooed.cpp   -- The ooed source file
  40. useful.hpp -- Some useful functions header file
  41. useful.cpp -- Some useful functions source file
  42. tested.cpp -- A demo program for ooed
  43.  
  44. Have fun.
  45.