-1
votes
1answer
11 views

Looking for a way to dynamically control multiple svg files from one master template

I'm working on designing some board games that involve cards. This ends up involving a lot of busy work, because if I change something about how all the cards look, I have to go to 54 different svg ...
5
votes
2answers
125 views

Derived Class with no overhead using templates?

I am trying to accomplish the following: Object. Debug version of object with extra functionality in functions for tracing purposes. Now, I currently have a compile-time solution using macros, ...
2
votes
1answer
50 views

Inheritance of templated class members in constructor

I posted a very similar question and got my answer. I'm now facing the same issue with the constructor.. How would one write the constructor for T2 ? template<typename T> class T1 { ...
-4
votes
0answers
41 views

Getting runtime error in the program related to class templates & private inheritance. What's the issue here? [closed]

ok, so I was doing a programming exercise of the book I am using to learn c++. The topic is related to private inheritance & class templates. Problem: we create a Wine class which holds the name ...
1
vote
1answer
59 views

Inheritance of class members, mixed with templates

in the code below, why does T2 give this error ‘m_t’ was not declared in this scope, while TB is fine ? And how can I have access to T1's members in T2 while still using templates ? // All good ...
1
vote
1answer
73 views

C++, templates, general method returning data in derived classes

There is the class A template <typename T> class A { public: virtual T get() = 0; }; and two derived classes B,C and get() method template <typename T> class B : public A<T> { ...
0
votes
1answer
41 views

CRTP inheriting from its default instantiation

I need to represent a hierarchy like this: template<typename T> struct X { }; template<typename Derived = void> struct Y : Y<void> { //Note: not trying to use SFINAE here ...
0
votes
1answer
36 views

friend template definition. Include <T> when and where?

I think I just need another set of eyes to find out what I'm doing wrong. This is the error: bfgs_template.hpp:478:5: error: ‘di’ was not declared in this scope bfgs_template.hpp:478:8: error: ‘b’ ...
4
votes
3answers
111 views

Generic base class with multiple template specialized derived classes

I have a finite amount of classes with the nearly-same implementation, the only different being the underlying type of data they manipulate: class IntContainer { public: void setData(int data); ...
0
votes
3answers
91 views

C++: Is it possible to inherit the assignment operator?

The following C++ code doesn't compile: class BaseA { protected: BaseA &operator = (const BaseA &rhs); }; template<typename T> class BaseB { public: T &operator = (const T ...
1
vote
1answer
76 views

Interface for template methods

I have a class Foo that provides some sort of functionality. In order to maintain modularity, Foo is to be an interface (That is, a C++ class with only abstract methods), and an implementation of Foo ...
0
votes
2answers
40 views

Templated data types with derived classes

Let's say I have the following: class Base { protected: Base() { } }; class A : public Base { }; class B : public Base { }; Now suppose I do this with a template: ...
1
vote
2answers
32 views

A template class that produces typename and typedef related errors in C++?

I have a class Tran that contains an instance of a class Car. If the program includes typename before typedef, it produces an error: "expected nested-name-specifier before typedef ". If it does not ...
5
votes
4answers
183 views

Creating dynamic type in C++

I'm writing a piece of generic software that will be loaded on to many different variants of the same basic hardware. They all have the same processor, but with different peripherals and their own ...
1
vote
2answers
52 views

Class template specializing a method c++

Say I have a class template in which some methods are type specific. template <typename T> class Shape { ... void Foo(); ... }; Now I would specialize the type-specific functions using, for ...
1
vote
2answers
63 views

How to instantiate superclass template with own type?

I have many classes A which are quite similar except for their data structure, so I'd like to move the common stuff into a base template B. The problem is that the template parameter is part of the ...
2
votes
0answers
128 views

when templating the inheritance of a class, how to keep it generic?

Sorry if my English or my coding conventions are bad. std::list is the STL list. I am trying to make a library that will use std::list<>::iterator and std::list<>::reverse_iterator ...
1
vote
0answers
36 views

Designing a logger to dump user-defined structures

I have some user defined structs (which can't be changed) that i want to store in a map in my Logger class. i.e. class Logger { private: map<string, vector<myType*> > myLog; } Of ...
3
votes
2answers
83 views

inheritance doesn't work as it should when using templates [duplicate]

I am having an issue with inheritance. I created this example to show more or less my issue. The thing is that if I publicly derive from class that publicly derives from a class then I must have ...
1
vote
2answers
76 views

C++ Template Specialization with Inheritance

Following Situation: class FeatureBase class Feature1 : public FeatureBase class FeatureAttrBase class Feature1Attr : public FeatureAttrbase FeatureBase contains a list of FeatureAttrBase and ...
2
votes
1answer
61 views

C++ no appropriate default constructor available - inherited templated constructor w/ no arguments

I've looked at over a dozen qst's with the phrase no appropriate default constructor available in it but none help with my own problem. It's a very basic C++ qst (as I'm still learning the ropes), so ...
1
vote
1answer
58 views

Overriding an abstract member function with partial template specialization

I am trying to implement a particular template design in C++, and ran into an issue that I wanted to make is solvable. Here is the setup, with explanation of the issue to follow. I declare an ...
2
votes
2answers
70 views

Inherit constructors from template base class without repeating template arguments?

How do I inherit constructors from a template base class without repeating the template arguments (and without using macros): For example, this does not work (using GCC 4.8): template <typename ...
0
votes
0answers
51 views

I am getting an error C3240: Function: must be a non-overloaded abstract member function of type [closed]

I have been trying to implement BER encoding in c++. What I have done is that, I created a Base class Param which has tag, length and data. And all my datatypes derive from them. Like, class Param { ...
1
vote
1answer
49 views

Substitute fully instantiated classes with partially instantiated ancestor classes

I want accepted_dense_vector<??>::value to return 'true' when I give template parameters in the form: C<T> when C is uvector, dynamic_array and T is std::is_arithmetic. ...
1
vote
0answers
102 views

Complex template inheritance in WPF

I created my own button template which has a canvas inside which defines some gradients going over each other. The basic button is grey <Style x:Key="ButtonGrey" TargetType="Button"> ...
1
vote
4answers
93 views

C++ OO design: Inheritance of template parameter

I have an inheritance chain with Base being the base class. I want to be able to write a class template which inherits Base and possible another Base-derived class. I could use virtual inheritance, ...
0
votes
1answer
78 views

class template has already been defined [closed]

I'm trying to create a class that inherits a class, which inherits from another class. In this base class is a template. Two classes inherit from this base class, and then two more classes each ...
3
votes
1answer
122 views

derived class calls wrong base class constructor [duplicate]

Can you explain the output of the following code? And what do I need to do to call the right base class constructor? Thanks. #include <vector> #include <iostream> template <class ...
2
votes
3answers
104 views

typedef unknown in derived class

I'm trying to write a container adaptor. I want to use the type definitions from the base class in the derived class as well. So I have tried the following... template <class CONTAINER> class ...
-1
votes
2answers
122 views

C++ Template Parameter automatically with Class Name

I have a triple hierarchy class: template<class T> class Singleton; class Base; class Sub : public Base, public Singleton<Sub>; I' using underlying auto pointers, that's why Singleton ...
0
votes
1answer
41 views

Type not found when derived from template base class

I'm having difficulty understanding why there is a difference in the following two pieces of code, what exactly is the compiler doing. I have the following bit of trivial code, that compiles without ...
0
votes
2answers
37 views

Template inheritance conflict (multiple doLayout in the same page)

I have a small problem with play-framwork (1.2.4). I want to have a tag inherit another tag, and this one be included in a html page extending another web page. The best way to explain is with a ...
2
votes
2answers
63 views

Assigning a template value to a class template via a pointer to its non-template parent class

I'm trying to make a C++ Template class that can store a template value. However, I need to create pointers to this class before the type of the template value is known. To do this, I created an ...
1
vote
3answers
130 views

Allowing access to private members

This question is somewhat a continuation of this one I've posted. What I was trying to do: my point was to allow access to private members of a base class A in a derived class B, with the following ...
2
votes
4answers
206 views

Inherit private members from base class

This question has already been asked here -- more than twice, actually --, but I myself haven't been able to derive a solution to my problem from the posts. What I have is a library, with, among ...
2
votes
0answers
52 views

Why does the compiler require a this-> prefix in certain situations when mixing templates and inheritance [duplicate]

Consider this code: template <typename T> struct X{ struct Y{ unsigned i; }; template<typename E> struct Z : public Y { unsigned foo(){ ...
3
votes
1answer
135 views

weak_ptr of a base class, while the shared_ptr is of a derived class?

I have a structure that manages objects that derive from a base class Entity, but does not control their lifetimes. I want this structure to be given weak pointers like weak_ptr<Entity> so that ...
1
vote
2answers
131 views

Should this bit of C++ CRTP code compile, and if so what should it do?

I was thinking about using CRTP classes to help with overloading and wondered what the following bit of code would do: #include <iostream> #include <typeinfo> template <class ...
0
votes
0answers
21 views

decltype of member method with virtual base class MSVC C1001 error

I've been stumped by a compiler error of Visual C++ with the following (condensed) code: struct Base{}; struct Derived: public virtual Base { void Method(); decltype( &Derived::Method ) a; }; ...
0
votes
0answers
25 views

Ambiguity with inherited overloaded member functions [duplicate]

I want to create a kind of "typemap" where I get a type according to a key type. I have a template version, but I show here a non-template version of the type-map implementation only with ...
0
votes
2answers
79 views

C++ Creating function map using templates and inheritance

I am trying to create a generic function map using templates.The idea is to inherit from this generic templated class with a specific function pointer type. I can register a function in the global ...
0
votes
1answer
47 views

How do I adapt a pure virtual method from a template to the class that inherits from it?

Let's say I have this example template: template<class T> class Wrapper { virtual T* ReturnPtr() = 0; }; And then I inherit from it: class Buffer; //some class class BufferWrapper : public ...
0
votes
1answer
30 views

Creating instance of a template type with class inheritance

I have an issue which I can't seem to solve. Suppose I have classes set up like this: public abstract class GenericCustomerInformation { //abstract methods declared here } public class Emails : ...
1
vote
2answers
76 views

Get type of template base class

The next code works fine (this is a oversimplified version of other problem of mine, with types longer, deeper and more templates): template<class C> struct Base {}; template<class C> ...
0
votes
1answer
81 views

Can I extend\include static html pages? [duplicate]

Possible Duplicate: Avoid repeated HTML I have 2 static html pages: main.html This contains my html, head and body tags. In it I have also put in links to css stylesheets and javascript ...
0
votes
5answers
39 views

Collection with inherited template class parameter

To me it makes perfect to do like that: public class A { } public class B : A { } public class C { public List<A> b = new List<B>(); } List expects elements to be of class A, which ...
0
votes
2answers
59 views

Can a class inherit from both an abstract class and a CRTP class?

Can a class inherit from both an abstract class and a CRTP class? Or if I inherit from a CRTP class must all classes I inherit from use CRTP?
3
votes
1answer
90 views

Adding an operator overloading in specialized template

Wondering about useful uses of the operator , I'm trying to create a little set of helper objects to make easier the construction of DB queries from the C++ code. My idea is to take advantage of the ...
1
vote
3answers
51 views

How to specify template argument for a function in a child?

So I try: class data_ppp { public: template <class T> virtual boost::shared_ptr<T> getData() { return boost::shared_ptr<T>(new T()); } }; class data_child : ...

1 2 3 4 5 8