Forum: C++ Mar 29th, 2008 |
| Replies: 16 Views: 3,640 First off, I would put using namespace std; instead of enumerating the standard objects.
The others are correct in what they have observed as problems. You don't use your functions.
Have you... |
Forum: C++ Mar 28th, 2008 |
| Replies: 5 Views: 752 Figured out my last logic error. Solved. Thanks! |
Forum: C++ Mar 28th, 2008 |
| Replies: 5 Views: 752 Yeah, I found that last night, thanks. temp is a pointer, not an object, so I just needed to change temp.data[i] to temp [i] and it worked.
I have some sort of small logic error with popback and... |
Forum: C++ Mar 27th, 2008 |
| Replies: 5 Views: 752 Thanks, Narue, that was helpful. That solved most of my problems, and I figured out some of the exception handling issues that I had as well. I think something is still fundamentally wrong, as I am... |
Forum: C++ Mar 27th, 2008 |
| Replies: 5 Views: 752 Hey guys, new poster here. I'm rather desperate here, I just do not understand the concept of templates very well. I've used the search function, but I don't see the problem addressed in any other... |