3
votes
3answers
105 views

When do symbols for functions bind in Python? Is forward declaration possible?

Suppose we have a hash table that maps strings to functions. In my example I'll call it COMMANDS. If I place the definition for some function (let's call it cmd_add) after the hash table that maps it ...
1
vote
1answer
173 views

C++ Having trouble with syntax, so a class can pass data to other classes

I'm not having a lot of luck in C++ getting one of my classes to see/reference/copy data from one of my other classes so it can use it. Basically I get the error 'Core' does not name a type or when ...
1
vote
2answers
1k views

C++: Unknown pointer size when forward declaring (error C2036)

In a header file, I have forward declared two members of a namespace: namespace Foo { struct Odp typedef std::vector<Odp> ODPVEC; }; class Bar { public: Foo::ODPVEC baz; // C2036 ...
1
vote
1answer
923 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(Object ^sender, MyArgs ...
4
votes
3answers
857 views

Forward Referencing or Declaration in C++

How do I do forward referencing / declaration in C++ to avoid circular header file references? I have the #ifndef guard in the header file, yet memory tells me I need this forward referencing thing - ...