(I have another thread on the main page here but that was directed towards getting some basic file structure issues worked out)
Problem: I need to create a dictionary that has words that are look-up-able, from a text file.
I need to have two classes (Word, Meaning), one for the definition and one for the word. The definition holding class also needs to be a child class of the word class. I am pretty sure I have the inheritance stuff covered.
What is the best way to go about doing this? How do I go about correctly extracting definitions from a text file and having them match up? I'll post whatever code you guys would like that I have so far.
I have been looking around the net for some time now and everyone seems to have a different and more confusing way of doing things.