Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
3answers
6k views

Forward declaration of nested types/classes in C++

I recently got stuck in a situation like this: class A { public: typedef struct/class {...} B; ... C::D *someField; } class C { public: typedef struct/class {...} D; ... A::B ...
6
votes
4answers
563 views

Alternative to nested type of type Expression<Func<T>>

I have a function used when calling a service. Before it call the service, it will create a log entry: protected TResult CallService<TService, TResult>(TService service, ...
3
votes
1answer
119 views

Using a typename nested in a template parameter

This is a mouthful, so here's a piece of code as an example: template<typename T> void foo(const T& a, typename T::value_type::value_type b) { } std::vector<std::vector<int>> ...
3
votes
3answers
84 views

Nested types or other solution for one to one mapped classes

I have a class which needs some functionality to be encapsulated in some way. I was thinking of a nested class, and put that functionality plus some states into it. The relation between these two ...
2
votes
4answers
340 views

Overriding a nested class functions or use delegates?**

I have a base class which has a nested type, inside. There's a function in the outer (base) type which would be overridden by it's children later. In fact this function belongs to the inner type from ...
2
votes
2answers
411 views

wpf: design time error while writing Nested type in xaml

I have created a usercontrol which accept type of enum and assign the values of that enum to a ComboBox control in that usercontrol. Very Simple. I am using this user control in DataTemplates. Problem ...
0
votes
3answers
43 views

How to refer to a nested struct?

Struct in a struct, how do I call the inner struct? my current code is #include <iostream> #include <string> using namespace std; int N_ITEMS; int N_SEATS; struct ST_SEATS{ struct ...
0
votes
1answer
117 views

About strongly typed enumerations forward declaration

I've a set of classes in my namespace and want to group forward declaration in a define.hpp file. I've already achieve this in others projects, here is an example : namespace Makefile { class ...