April 28th, 2009 09:26 PM
Hi Guys,
I am writing a file parser for one of my code projects.. I have attached the code for my project
namespace Xlib {
/*!Templating the class */
template <class T>
class Parser;
...
March 21st, 2009 08:51 PM
Thanks for the reply...
works great
March 20th, 2009 08:13 PM
Hi
I am current ly using dynamically allocated pointers in a little simulation I am coding .
pos.Initialize(3,0,3);
TEnt* a=new TEnt(pos);
What it does is initialize a position...
March 19th, 2009 05:13 PM
Thanks a lot Kurt...
Works great now ;))
Is it fine if I ask you some thing else??
This is another problem I have.
I got a following inheritance hierarchy.
TEnt, Male and Female...
March 19th, 2009 04:43 PM
Can you please give me a example of as to how I should be doing it?
March 19th, 2009 04:20 PM
I seem to have gone wrong with the pointing but I think what you said is probably the cause of the problem.
This is from a a level editor class that I use to register the entities on to the...
March 19th, 2009 03:46 PM
I am not exactly sure as to what you mean by going out of scope!! ;)
But it seems to register it because when I test the size of the vector from the screen class I dont get a error and it says the...
March 19th, 2009 03:34 PM
I am not pretty sure if I should post this here.
Well another query for the day. A bit long post this time. Please bear with me and help me
I have a class called TEnt which basically defines a...
March 19th, 2009 09:22 AM
Hi guys,
I am doing a project for my mid term and I am held up with this doubt. I might have misunderstood something all together or it might be a small mistake. Please point it out:
I have a...