Tagged Questions
2
votes
2answers
43 views
Includes and classes in C++
Well, i have the following problem.. I have main.cpp
#include "serverClass.h"
...
and then in serverClass.h,
#ifndef SERVERCLASS_H_
#define SERVERCLASS_H_
#include <stdio.h>
#include ...
0
votes
3answers
144 views
May I #include in .hpp files?
I have a class called A, which has its .cpp and .hpp files. It depends on classes B and C. Now, I'm wondering, should I #include B.hpp and #include C.hpp in A.cpp or A.hpp? I think it would be ...
0
votes
3answers
54 views
compiling a source file which contains a function declared in a header
Suppose there is a source file un2.cpp
----un2.cpp----
class employee;
void employee::setname(string s)
{
.....(some code)
}
The employee class is defined in un2.h wherein setname() is declared. ...
1
vote
4answers
211 views
C++ Forward Declaring a class?
In a .h if I have:
#pragma once
#include <xxxx.h>
#include "yyyy.h"
class AAAAAA;
class BBBBBB;
class ZZZZZZ
{
public:
// etc
};
using class AAAAAA; is forward declaring a ...
15
votes
3answers
637 views
Refactoring C++ code to use forward declarations
I've got a largeish codebase that's been around for a while and I'm trying to tidy it up a bit by refactoring it. One thing I'd like to do is find all the headers where I could forward declare ...
3
votes
3answers
2k views
“using typedef-name … as class” on a forward declaration
I'm doing some policy-based designs here and I have the need to typedef lots of template types to shorten the names.
Now the problem comes that when I need to use a pointer to one of those types I try ...