Tagged Questions
1
vote
0answers
243 views
Receiver is a forward class and corresponding @interface may not exist
thanks for taking the time to read my problem and help me:)
I am building a TabView project and on tab 3 of the app I have a row of albums, in album 3, page 1 the nextButton takes the user to page 2 ...
1
vote
1answer
278 views
How do I forward declare a class derived from a forward declared template base class?
I am trying to forward declare a class that is derived from a template class that must also be forward declared.
Here is an example of the classes:
class TType {
public:
TType() { }
};
...
3
votes
2answers
346 views
forward declare derived class from template c++
I am having trouble working out some kinks in a design implementation. It goes something like this:
I have a template base class which has a conversion method.
// Foo.h
class Bar;
...
8
votes
6answers
7k views
Forward Declaration of a Base Class
I'm trying to create proper header files that don't include much other files.
(To keep them clean, to speed up compiling time, ...)
I encountered two problems while doing this:
1 - Forward ...
7
votes
4answers
15k views
C++ Nested classes forward declaration error
I am trying to declare and use a class B inside of a class A
and define B outside A.
I know for a fact that this is possible because Bjarne Stroustrup
uses this in his book "The C++ programming ...