Forward declarations allow statically-typed programs to indicate the type and name of a symbol without actually defining it.
3
votes
3answers
216 views
Forced to use forward declarations for C++ code on Mac (using Xcode)
This is a weird problem that I was wondering if anyone else had seen. We're writing cross-platform C++ code for Mac and PC, and this only occurs on Mac.
Say I have a class, whose .h file looks like ...
0
votes
3answers
60 views
invalid use of incomplete type in handling exceptions
How to implement the following without troubles connected with "invalid use of incomplete type"?
class A { // line#10
/*(...) some fields and methods here. */
// more fields of the following ...
3
votes
1answer
766 views
Xcode warns about missing protocol definition, even though @protocol is used
Since I had a import-cycle recently, I'm moving all #import statements (concerning my own files) from the header into the corresponding .m-file. I also added @class and @protocol forward-declarations ...
2
votes
1answer
95 views
Boost container fails to compile with undefined (but declared) class
The following code fails to compile in MSVStudio 2010 Express, and seems to be because the boost container declaration creates a (static?) instance of the contained type. Changing ...
1
vote
1answer
53 views
forward declaration of smth that represents the list of elements
What should I do to declare forward A, that represents a list of elements B, each of which refers to the C, that boost::recursive_wrapper-s to the A?
Especially interested in case of when all the ...
1
vote
1answer
920 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 ...
0
votes
1answer
122 views
Updating Winform Control From Another Thread and Class C++
I have been struggling with trying to update a Winform control from another thread and another class in C++. I see several questions about this topic but each one seems incomplete in someway and I ...
2
votes
0answers
158 views
C++ CLI XML Documentation with Forward Declaration <seealso cref> gets Reference to Unknown Symbol Warning
I have been trying to generate XML Documentation for C++ CLI, Visual Studio 2010, and I simply cannot get it to pick up a forward reference. I made a test program to try and get it working.
I get (2 ...
1
vote
0answers
62 views
Forward declaration in externing data from DLL to core program
I'm writing a dll, which contains a c++ class definition, and a core program based on the proxy pattern, as described in this tutorial: http://www.linuxjournal.com/article/3687
Specifically, this ...
1
vote
0answers
272 views
How to pass the runtime parameter using the <forward> in the struts-config.xml?
I want to pass the string using the paramter of 'multitablesid' with different name. Because I am using the export to excel using our jar file. Here am using the struts1.2.9. In my scenario I want to ...
0
votes
0answers
24 views
template parameter of shared_ptr in dll exported class
I made some class which owns shared_ptr member like below.
#include <memory>
template<typename T>
class a { T m; };
class b; // forward declare
class __declspec(dllexport) test
{
...
0
votes
0answers
83 views
Undefined Symbols inheritance
I'm receiving this error:
"Carga::~Carga()", referenced from:
Caminhao::operator=(Caminhao const&)in cc1UKCKh.o
Caminhao::~Caminhao()in cc1UKCKh.o
Caminhao::~Caminhao()in ...