Tagged Questions
15
votes
14answers
9k views
C++ code in header files
My personal style with C++ has always to put class declarations in an include file, and definitions in a .cpp file, very much like stipulated in Martin York's answer to C++ Header Files, Code ...
10
votes
5answers
6k views
C++ Header Files, Code Separation
I am new to C++ and I had a few general questions about code separation. I have currently built a small application, all in one file. What I want to do now is covert this into separate files such ...
3
votes
3answers
2k views
Multiple Singleton Instances
I am writing a library of utility classes, many of which are singletons. I have implemented them as such using inheritance:
template <class T>
class Singleton {
public:
T& ...
1
vote
1answer
282 views
Debug class, c++, linker error
I am trying to write a debug class for a project I am working on, and I do not want to have to pass a debug object around so I was trying to do it this way. However, I do not know why my compiler or ...