Tagged Questions
0
votes
2answers
58 views
Automatically incrementing an index in the following macro generated structs in C++
I have a template function which looks something like this:
template <class T> void foo(T* t)
{
//do stuff using:
someArray[idx]; //idx depends on T
}
There are a handful of possible ...
0
votes
1answer
77 views
c++11 template specialisation wrapper
I want to do something like this in c++11 but i dunno how to do or what to google:
the goal of this is to emulate polymorphism on return type here is a sample of code to explain what I want to do
...
1
vote
1answer
54 views
Nontype template class member specialization
Consider the following c++ code:
template <int K>
struct KData
{
float data[K];
};
template<int K>
class KClass
{
public:
typedef KData<K> Data;
Data m_data;
...
2
votes
1answer
31 views
Can a Default Template Argument correspond to a Specialization?
Hi :) I've looked around about this question and there seem to be a lot of related posts, but none of the answers so far could solve my problem. If you know about a post that answers this specific ...
1
vote
1answer
44 views
Separate declaration and definition of specialization of template function : different behaviour for member and nonmember functions
I want to declare specialization for function template, but define it later in source file. Consider next example:
.hpp
// approach #1
template <typename T> const char *GetTypeName();
template ...
2
votes
1answer
69 views
Partial class template specialization
I would like to add a member function in case the last template parameter of my class is explicitely set to a certain value. I do not understand how I can re-use code from previous definition.
...
1
vote
1answer
89 views
Getting “illegal use of explicit template arguments” when doing a pointer partial specialization for a class method
Hello I'm having problems with partial specialization. What I want to do is have a class that has a template member function that will interpret a given value to one specified by the user. For ...
1
vote
1answer
67 views
What is a better way to specialize this template function for int8_t and uint8_t?
Consider the template dump function below:
namespace {
using namespace Eigen;
using namespace std;
using namespace vMAT;
template <typename T>
NSString *
dump(NSString ...
3
votes
4answers
190 views
Specialization for any vector
I'd like to define a function in a template class for different cases of T. My problem is to define the case where T is a vector (whatever it contains).
Here's one of my first attempts :
...
5
votes
2answers
113 views
How to specialize a template without copying and pasting the whole class body?
I wrote a simple class for the moving average which can be used with an AVR.
template<typename T, typename Tsum = int32_t>
class MovingAverage { ... }
But now I want to specialize this class ...
1
vote
3answers
95 views
Why does this code give the error, “template specialization requires 'template<>'”?
When I try to compile this with Clang
template<class T>
struct Field
{
char const *name;
Field(char const *name) : name(name) { }
};
template<class Derived>
class CRTP { static ...
1
vote
1answer
84 views
C++ - specialising member function template via templated functor does not compile
I wish to create a class that can convert between arrays of floats and doubles polymorphically. That is, the instance concerned (parameterised by <double> or <float>) and the decision to ...
1
vote
1answer
85 views
Compiler rejects two identical template specializations
I am using two helper structs to work with smart pointers and vectors
template<typename T>
struct Pointer {
typedef shared_ptr<T> type;
};
template<typename T>
struct Vector {
...
0
votes
1answer
38 views
Multiple aspects template class specialization
Context
I am currently writting some Aspect Oriented code in C++. I have the following class hierarchy :
class Base { virtual void doSmth() {/* generic stuff */ } };
class DerivedA ...
0
votes
1answer
38 views
breakpoint in template for specific template parameter
What if i want to set breakpoint into constructor with condition if I == 10?
template < typename T, int I >
class C
{
public:
C<T, I>() { cout << I << endl; }
};
0
votes
2answers
86 views
c++ how does a class derived from a template call the template's constructor?
I didn't really know how to call this thread.
The situation is the following. I have a template class Array<T>:
template <typename T> class Array{
private:
T* m_cData;
int ...
4
votes
3answers
168 views
Template Conundrum
I have encountered a C++ template conundrum. I've tried to trim it down to the bare minimum, and now I'm not even sure if what I'm trying to do is possible. Take a look at the following code (in some ...
3
votes
3answers
121 views
How to rewrite this to make it conforming to the C++ Standard
The following code snippet demonstrates what I would like to achieve, namely creating two template specializations (well, here it's a main template and a specialization), one which will be used for ...
0
votes
2answers
59 views
Template specialisation in C++ with const
I'm obviously misunderstanding something important about template specialization, because:
template<typename type> const type getInfo(int i) { return 0; }
template<> const char* ...
7
votes
1answer
138 views
Template class member specialization without declaration in header
I have a template class that I declare in a header with one method and no definition of that method in the header. In a .cc file, I define specializations of that method without ever declaring them in ...
2
votes
1answer
78 views
Specialized template classes cyclic dependency
I have a daunting design problem and I'm begging for some advice. To put it real short, I have two base classes A and B, and AImpl<T> and BImpl<T> inheriting from A and B respectively. ...
1
vote
1answer
52 views
Simultaneously specializing outer and nested class
The following class template Sequencer contains a nested class template Process, with two template arguments.
template<typename P>
struct Sequencer
{
template<typename A , bool = ...
1
vote
2answers
102 views
Specializing a template class to take a pointer to a particular class or a pointer to a derived class object
How can I specialize a class template so that the template parameters can be of type : a pointer to a particular class or a pointer to the derived class of that particular type? Is it possible to do ...
0
votes
1answer
36 views
Something unrecognize in template function working with a template object
Gcc (4.7.2) throws a little error compiling this code:
#include <iostream>
template<typename T>
struct test
{
template<int n>
int select() const
{
return n;
...
1
vote
3answers
74 views
Can you template specialize a subclass that is not templated?
Here is my situation:
Base class, no templated type:
struct Thing
{
} ;
Templated class, extends that very base class
template <typename T> struct VertexWriter : public Thing
{
...
8
votes
2answers
201 views
C++ template specialization, calling methods on types that could be pointers or references unambiguously
Summary
Is there a way to call a class method on a templated type that could be a pointer or a reference without knowing which and not get compiler/linker errors?
Details
I have a templated ...
9
votes
3answers
232 views
How to extract the highest-indexed specialization from a structure?
I'm trying to do some template metaprogramming and I'm finding the need to "extract" the highest index of a specialization of some structure in some type.
For example, if I have some types:
struct A
...
2
votes
1answer
82 views
class template state data member, not an entity that can be explicitly specialized
I got an error in the code below:
template<typename T, bool B = is_fundamental<T>::value>
class class_name;
template<>
class class_name<string, false>{
public:
static ...
0
votes
3answers
106 views
Template specialization in C++98
Having done a brief search on the following error code from GCC, a number of hits show questions asking for help for this problem, but nothing much concrete turns up:
error: explicit specialization ...
3
votes
1answer
85 views
Problems specializing variable template function
I am writing a function inListi() which takes at least one argument and compares the first argument to thes list of all subsequent arguments. returns true if first argument == an element in the list, ...
2
votes
2answers
132 views
Specialized template for function signature
In that test code:
#include <string>
#include <iostream>
using namespace std;
template <typename T> class Signal;
template <typename T, typename U>
class Signal<T ...
0
votes
1answer
50 views
Forcing a compilation error for an unspecialized template instantiation
OK, this is my first foray into templates, and this will likely be the first of several very silly, simple questions.
Consider:
template <class T>
void sendit(char *buffer, unsigned len)
{
...
3
votes
2answers
71 views
Class method specialisation with different signature
I'm trying to write a class-template where the method signatures change depending on the template parameters. My goal is to have as little code duplication as possible. Consider this example, first ...
4
votes
2answers
97 views
Specializating a template function that takes a universal reference parameter
How do I specialize a template function that takes a universal reference parameter?
foo.hpp:
template<typename T>
void foo(T && t) // universal reference parameter
foo.cpp
...
4
votes
2answers
98 views
C++ nontype template argument taking inherited class
I want to be able to pass references of objects inherited from DBMetaData as a nontype template argument of another class, DBVar:
#include <iostream>
class DBMetaData
{
public:
...
1
vote
3answers
81 views
C++ Templates and comparing different types
I am trying to write a generic sort function in C++ using templates, but I am stuck in writing the greater function which returns true if lhs > rhs
template <typename T>
bool ...
1
vote
1answer
169 views
C++ template specialization to provide/add different member functions
I'm experimenting a little with type traits and template specialization. For example:
enum TestEnum
{
VALUE0 = 0,
VALUE1 = 1,
VALUE2 = 2
//... And so on...
};
template<int ...
2
votes
2answers
253 views
c++ How to initialize static variables of a partial template specialization
How should I initialize a static variable for a partial specialization?
template <bool A=true, bool B=false>
struct from {
const static std::string value;
};
// no specialization - ...
0
votes
2answers
100 views
Generic Buffer with fancy swap function? How?
I came across this problem this morning:
I want to build a generic class FrontBackBuffer which I can use as the following (some examples).
EDIT Removed some confusing part!
int bb=10;
int bbb=3;
...
5
votes
1answer
162 views
Partial template specialization of member function: “prototype does not match”
I'm trying to partially specialize a templated member function of an untemplated class:
#include <iostream>
template<class T>
class Foo {};
struct Bar {
template<class T>
...
5
votes
2answers
102 views
can compiler tell me which overloaded or template function it chose?
Specifically using g++ on linux, is there a way to determine which overloaded or template function was chosen for a particular statement?
More specifically, I don't assume that I necessarily know ...
1
vote
1answer
189 views
C++: Manual disambiguation of partial specialization (with SFINAE)
I am implementing a generic class, which should behave differently for different sets of types (not only for different discrete types). The goal is to serialize objects of different types to send them ...
0
votes
3answers
89 views
Why full specialization of template function is not picked up from the .cpp file without declaration?
Following code generate no compilation/linker error/warning:
// A.h
#include<iostream>
struct A
{
template<typename T>
static void foo (T t)
{
std::cout << "A::foo(T)\n";
...
6
votes
2answers
276 views
Is it possible to use std::enable_if to select a member template specialization?
Given a class declaration
class A {
template <typename T> T foo();
};
I would like to specialize A::foo for various types (int, ...) and type classes (POD, non-POD) of T. Unfortunately, I ...
4
votes
1answer
175 views
Define template specialization in cpp?
I can define a specialized function in a cpp like so...
// header
template<typename T>
void func(T){}
template<>
void func<int>(int);
// cpp
template<>
void ...
2
votes
1answer
154 views
How to use enable_if and template specialization c++?
I am trying to use enable_if in boost to do template specialization, but cannot get it to work and confused as to how to write it and what the syntax actually means. I've read the boost docs but still ...
1
vote
2answers
88 views
How to specialize or overload global template function for all instances of template class?
How can I specialize or overload function func so that specialization handles all instances of MyClass? Assume func is a librarian function (like std::swap for example) so I can't change func, and I ...
3
votes
3answers
143 views
Template specialization for static function when compiling with g++
Why does the following code not work when compiling with:
$ g++ temp_main.cpp temp_spec.cpp
/tmp/ccirjc3Y.o:temp_spec.cpp:(.text+0x100): multiple definition of `my::say()'
...
1
vote
1answer
181 views
c++ inherit from specialized template class
template<typename T1, typename T2, typename T3>
class A: public A<T1, T2, void> {
public:
T1 a;
T2 b;
T3 c;
void set() { a = aa; } // Cannot find variable `aa' here!
};
...
3
votes
2answers
163 views
C++ template metaprogramming static type checking
I couldn't find an answer to my problem so I post it as a question. I make a small dummy example to explain it:
enum STORAGE_TYPE
{
CONTIGUOUS,
NON_CONTIGUOUS
};
template <typename T, ...