Thank you very much for your insight. However, "Andy Blantly-Code Project" wrote a custom project out of the zlib and it's a dependency for the other two projects. I was...
I suppose your right. It, typically, may be better just starting from scratch. But my problem is that I have a psychological disorder( I'm embarrassed to admit)that has been quite debilitating, and...
Well, maybe I should have said ~intermediate. I am not sure exactly how to gauge my understanding of C++. Right now I am trying to learn about Object Oriented analysis and design, and I think I have...
Well... I guess I'll be checkin' out some static code analysis tools then, and see what they can do. As far as runtime goes, I suppose that runtime analysis is not absolutely necessary, but it would...
After using the VS 2008 " Data Break Point" I've come to understand that their only functionality is to break execution when the value at such and such memory address is wrote to. One problem with...
I might be speaking to soon, but upon further inspection I discovered that data breakpoints were a unique type of breakpoint. This type of break point - seems - to be exactly what I was asking for in...
Wow! You actually took the time to look through the codebase......
I was going to post the file locations within the repository, but I wasn't sure that anybody would bother to look.
Ok, I added, at least, what I assume is a reasonably correct set of operator='s. I also added a non-const copy constructor. Which is what I am assuming is what you meant by that my constructor isn't...
I updated my program for you, and stripped it down as you've said. You were right it could be stripped down even further. I also narrowed down what the problem is - which I noted in my last post next...
Ok I'll post a bare bones version .Below is a compressed file with all the potentially relevent code, although, I have stripped each file down to nothing. I somehow have skinned my program down to...
Hi laserlight, what do you mean by "failure to use delete yet another time" I only wanted to delete the second element in this example. Am I not deleting both the second myClass element's allocated...
Ok I made the change to const and rebuilt everything and error went away. I didn't know the operator= parameter had to be const, but then again I am a novice.
No. The domain vector actually represents any domain object that is instantiated, including even the same CDomain object that instantiates through CDomain::create().
Hey that's actually a good idea. I think I may just write my program to do just that. I haven't yet learned how to properly format info that is to be copied to the clipboard. Also I'm...