Tagged Questions

0
votes
2answers
103 views

Possible circular reference problem

I am not an idiot, but header files make me feel like one sometimes. I have what is probably an overly-complicated set-up that has an error that I cannot resolve. Here it is in abo …
0
votes
2answers
114 views

Circular dependencies in flex libraries

I have two Flex libraries that reference each other. Both use link type "External", and I manually load then with the Loader class. I'm getting the error "A cycle was detected in …
3
votes
3answers
84 views

Using different versions of a python library in the same process

We've got a python library that we're developing. During development, I'd like to use some parts of that library in testing the newer versions of it. That is, use the stable code i …
1
vote
2answers
169 views

Circular import dependency in Python

Let's say I have the following directory structure: a\ __init__.py b\ __init__.py c\ __init__.py c_file.py d\ _ …
3
votes
3answers
221 views

Depedency injection: injecting partially-initialized objects

Hi! This question is about Unity Container but I guess it is applicable to any dependency container. I have two classes with circular dependencies: class FirstClass { [Depen …
0
votes
3answers
244 views

C# Circular Dependency Problem Solving Technique

While dividing my C# application in layers, I have solved the problem of circular dependency among layers in the following way: using System; using System.Collections.Generic; usi …
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 …
2
votes
1answer
77 views

VB6, ActiveX: Cannot create reference to OCX

hello again i have a little problem with the creation of a user control. though i have made a control i want to use in another control. as soon as i want to add the reference (wo …
1
vote
6answers
184 views

Database Design: Circular dependency

Imagine the following database: Table 'companies' has fields id, name and flagship_product_id. Table 'products' have fields id, name and company_id. A company must have a flagsh …
1
vote
1answer
219 views

Lazy C++ - Chicken and Egg Problem

Based on feedback I got from this question, I'm interested in using Lazy C++ on my OSX laptop. The Lazy C++ webpage has binaries for Linux and Windows available, but nothing for OS …
2
votes
2answers
96 views

How do I detect circular logic or recursion in a multi-levels references and dependencies.

I have a graph of multi-level dependecies like this, and I need to detect any circular reference in this graph. A = B B = C C = [D, B] D = [C, A] Somebody have a problem like …
3
votes
1answer
77 views

Encountering self recursive assembly references in the .NET framework.

I was writing some C# code recursively walking the referenced assemblies of a base assembly, building up a directed acyclic graph of these references to do a topological sort. I'm …
0
votes
4answers
219 views

Circular Reference Problem (C#)

I have the following situation: 1) A project MyCompany.MyProject.Domain which contains my domain model, and partial classes (such as Contact). 2) I want to 'extend' (by partial c …
6
votes
4answers
162 views

Organizing interfaces

I am just reading Agile Principles, Patterns and Practices in C# by R. Martin and M. Martin and they suggest in their book, to keep all your interfaces in a separate project, eg. …
2
votes
8answers
351 views

Are circular references acceptable in database?

When are circular references acceptable in database? Theoretical and practical, any help is appreciated.

1 2 next
15 30 50 per page