0
votes
3answers
87 views
Nested class forward declaration for template inheritance
What's the proper way to inherit from a template class with the template argument being a nested class within the inheriting class?
class SomeClass : public TemplateClass<Neste …
1
vote
9answers
238 views
Is it possible to forward-declare a function in Python?
I want to sort a list using my own cmp function. For the purpose of this discussion we can use the following example which is equivalent to what I'm trying to do:
print "\n".join …
3
votes
2answers
152 views
Declare but not define inner struct/class - legal C++ or not?
Is following code legal C++ or not?
class Foo
{
class Bar;
void HaveADrink(Bar &bar);
void PayForDrinks(Bar &bar);
public:
void VisitABar(int drinks);
};
clas …
0
votes
2answers
150 views
Forward typedef declarations, effect on build times, and naming conventions
I am curious about the impact my typedef approach has on my builds.
Please consider the following example.
#include "SomeClass.h"
class Foo
{
typedef SomeClass SomeOtherName …
1
vote
4answers
155 views
C++ class dependencies
Hi everyone!
I'm having some problems with my class because they both depends on each other, to one can't be declared without the other one being declared.
class block: GtkEventB …
6
votes
3answers
135 views
Is there a shorter way to forward declare a class in a namespace?
I can forward declare a function in a namespace by doing this:
void myNamespace::doThing();
which is equivalent to:
namespace myNamespace
{
void doThing();
}
To forward dec …
2
votes
1answer
75 views
How do I Forward Declare a Property in C++/CLI?
I have a class in C++/CLI that I'd like to give a property. I want to declare the property in a header file and then implement that property in a .cpp file.
Here's the header:
p …
4
votes
2answers
146 views
Is there a way to forward declare covariance?
Suppose I have these abstract classes Foo and Bar:
class Foo;
class Bar;
class Foo
{
public:
virtual Bar* bar() = 0;
};
class Bar
{
public:
virtual Foo* foo() = 0;
};
Supp …
3
votes
5answers
282 views
forward declaration and template function error
Currently I have a frustrating problem with forward declaration and template function. I have been trying to googling and do some modification but nothing has worked so far. Below …
0
votes
2answers
507 views
C++ Class forward declaration drawbacks?
Hi!
I want to use forward declaration of a class in my software, so I can have typedefs
and use them inside the class full declaration.
Smth like this:
class myclass;
typedef b …
2
votes
2answers
129 views
How do i forward declare a class that has been typedef’d?
I have a string class that, unsurprisingly, uses a different implementation depending on whether or not UNICODE is enabled.
#ifdef UNICODE
typedef StringUTF16 StringT;
#else
typed …
1
vote
1answer
75 views
Forward declaration - no admin page in django?
Hi SO,
This is probably a db design issue, but I couldn't figure out any better. Among several others, I have these models:
class User(models.Model):
name = models.CharField( m …
0
votes
3answers
186 views
Forward declaration in multiple source directory; template instantation
Hi,
I am looking for a nice book, reference material which deals with forward declaration of classes esp. when sources are in multiple directories, eg. class A in dirA is forward …
7
votes
9answers
969 views
When to use forward declaration?
I am looking for the definition of when I am allowed to do forward declaration of a class in another class's header file:
Am I allowed to do it for a base class, for a class held …
1
vote
1answer
188 views
How do I forward declare a delegate in C++/CLI?
How?
The following did not work:
delegate MyDelegate;
ref class MyDelegate;
delegate void MyDelegate;
The following works for declaration:
public delegate void MyDelegate(Obje …
