0
votes
3answers
68 views
Template specialization of a single method from a templated class
Hello.
Always considering that the following header, containing my templated class, is included in at least two .CPP files, this code compiles correctly:
template <class T> …
1
vote
4answers
198 views
Need a vector that derives from a vector.
Hi,
Consider this simple code:
class A {
};
class V1: vector<A *>{
// my nice functions
};
if I have a instance of V1, then any object derived from A can be inserted i …
0
votes
1answer
106 views
Template specialization problem
Hi, I'm trying really hard to made this work, but I'm having no luck. I'm sure there is a work around, but I haven't run across it yet. Alright, let's see if I can describe the p …
6
votes
2answers
70 views
Using valid STATIC member function of class that can’t be installed
Hello,
I have following piece of code:
It compiles without problems under gcc-3.4, gcc-4.3, intel compiler, but fails under MSVC9.
MSVC tells "use of undefined type c_traits< …
0
votes
3answers
113 views
C++ template specialization via a base class
Dear Overflowers,
I want to be able to make the compiler shout when i call a constructor of foo with a class
that is NOT derived from base. The current code allows only for foo< …
9
votes
4answers
167 views
C++ template specialization without default function
Hello, I have the following code that compiles and works well:
template<typename T>
T GetGlobal(const char *name);
template<>
int GetGlobal<int>(const char *nam …
0
votes
3answers
73 views
C++ template specialization with <int&> not picking up an int
Hi, I have the following code:
template <typename T> LuaCall& operator>>(T) { BOOST_STATIC_ASSERT(sizeof(T) == 0); }
template <> LuaCall& operator>> …
2
votes
2answers
39 views
Specialization vs. Diversification
I have read a few of the questions asked on this topic, here on StackOverflow, but most of them focus on different areas within Computer Science.
I am currently working in a start …
0
votes
5answers
199 views
C++ specialization, type_of or just typeid
Hello,
I would like to know what is better to use in my situation and why. First of all I heard that using RTTI (typeid) is bad. Anyone could explain why? If I know exactly types …
3
votes
2answers
97 views
Template specialization of particular members?
Is it possible to specialize particular members of a template class? Something like:
template <typename T,bool B>
struct X
{
void Specialized();
};
template <typenam …
1
vote
2answers
212 views
Template specialization error - C++ (C++ Primer Plus exercise)
Hi!
I'm currently learning C++ so I don't have much knowledge on the topic . I'm using the C++ primer plus book and here's the problem :
Write a template function maxn() that tak …
4
votes
3answers
155 views
Templated class function T: How to find out if T is a pointer?
As a follow-up to this question: I need to decide in a class function like this:
template< typename T > bool Class::Fun <T*> ( T& variable ) {...}
whether T is a …
0
votes
2answers
197 views
template specialization of template class
Hello, I want to specialize following member function:
class foo {
template<typename T>
T get() const;
};
To other class bar that depends on templates as well.
F …
1
vote
2answers
166 views
Function template specialization with reference to pointer.
I have a template function:
template<typename T>
void foo(const T& value) { bar(value); x = -1; }
I want to specialize it for a set of types:
template<>
void fo …
2
votes
4answers
330 views
Inheritance vs Specialization
Considering the following two usage scenarios (exactly as you see them, that is, the end-user will only be interested in using Vector2_t and Vector3_t):
[1]Inheritance:
template& …
