3
votes
1answer
813 views

Xcode ios Unknown type name?

I have a question about the following error "Unknown type name VistaDereIzq" I have a view called VistaDereIzq. And I do the following to add that view in this view #import <UIKit/UIKit.h> ...
7
votes
2answers
238 views

Typedef Circular Dependency

How can I solve the following circular dependency? typedef boost::variant<int, bool, double, std::string, Structure> Value; typedef std::list<std::pair<std::string, ValueContainer>> ...
0
votes
1answer
163 views

Breaking a circular dependancy in factory pattern

I am trying to develop a game and I was having issues managing the creation and destruction of game objects and was suggested by several people to try using a factory pattern. I went and read up on ...
1
vote
3answers
213 views

C++. Child inherits from Parent and is included as Parent attribute

I have a very simple Child-Parent relationship, where OlderSon inherits from Parent and a Parent has a pointer to his OlderSon, such as: #ifndef PARENT_HXX #define PARENT_HXX #include ...
1
vote
1answer
325 views

interdependent classes in same namespace problem

I'm in a real fix... I need to port code, which has a lot of interdependent classes and uses namespaces in order to avoid includes. This works in MSVC, but I can't find a way to deal with this ...
2
votes
4answers
357 views

How to solve Boost::BGL template<->class circular dependency?

I have a problem with using the adjacency-list of the Boost Graphics Library. It seems to be a circular dependency problem: I have a typedef T of a template which uses some class A. Additionally A ...
0
votes
2answers
2k views

C++ circular reference problem

I have 2 classes: DataObject and DataElement. DataObject holds pointers to (only) DataElements, and a DataElement contains pointers to several types, among which a DataObject. This used to be no ...
0
votes
1answer
147 views

Resolving a Forward Declaration Issue Involving a State Machine in C++

I've recently returned to C++ development after a hiatus, and have a question regarding implementation of the State Design Pattern. I'm using the vanilla pattern, exactly as per the GoF book. My ...
5
votes
7answers
539 views

Compiling C++ when two classes refer to one another

I am trying to write a simple wrapper around a connection pointer that will return it to the pool when the wrapper is destroyed, but it wont compile because the ConnectionPool and AutoConn need each ...
2
votes
3answers
500 views

Two classes and inline functions

I have two classes and both of them uses some of the other class, on example: // class1.h class Class1; #include "class2.h" class Class1 { public: static Class2 *C2; ... }; // class2.h class ...
1
vote
4answers
943 views

C++ class dependencies

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: GtkEventBox { public: ...