Consider the next code :
#include <iostream>
using namespace std;
class B;
class A
{
public:
A() { p = 1;}
int p;
operator B() {B b; b.x = this->p; return b;}
};
class B
{
public:
int x;
};
int main()
{
A a;
B b = a;
return 0;
}
I'm trying to convert A to B , but I get the following compiler scream :
..\main.cpp:13: error: return type 'struct B' is incomplete
When I do this :
#include <iostream>
using namespace std;
class B
{
public:
int x;
};
class A
{
public:
A() { p = 1;}
int p;
operator B() {B b; b.x = this->p; return b;}
};
int main()
{
A a;
B b = a;
return 0;
}
the code compiles , but the question is : is it possible to do that using the forward declaration I wrote above ?
Much thanks Ronen