Most mobile phone development requires you to use at least some platform-specific functionality, mostly because applications on phones are run differently due to the memory limitations. At least,...
I know its uglyl. I don't like it either, but until all of my code works, I'm not going to change little bits of it that work so the look better (don't fix things that aren't broken) In any case, I...
That's true for the first implementation, where he should have only the first prototype. Then it asks him to do it with function overloading, which would have two prototypes:
The code I posted is only part of the full code. I have header guards, required include files, etc, in the files already, and io.hpp compiles fine with all...
I'm having some rather odd problems with includes. I declare and define a class, along with some methods, in one header file. (They are in a namespace) I then include that header file in...
I'm wondering how to create a pointer to 'this'. I have an implementation of a dynamic memory list, but it takes pointers to the objects to allow the addition of arrays, and so, when I...
I'm trying to define a class in a header file, and implement it separately. However, my compiler is telling me that the class is being redefined. I recognize what the error is telling...
Hello all. I have a macro at the beginning of my source file, however, it cannot be found later in my source file... any ideas? I'm using the MinGW GCC compiler, though I don't think it would...
Hi all. I'm just wondering what the possible commands would be for executing a C++ .exe file, and whether there are specific commands. I'm trying to run it from Java if it makes any difference.
Hmm... well, I'm shutting down from user input stating that the program SHOULD be shut down. I present them with the option, and if they choose it, it shuts down. I can't see anything against...
Thanks all. I figured out what was happening (didn't initialize the cont string in the right place). I went to look at my goto functions and replaced one of them... But I am wondering what an...