class-template Questions
2
Is static member variable initialized in a template class if the static member is not used? I use it to register the type.
template<class T>
class A
{
static bool d;
};
template<class T...
Octogenarian asked 13/10, 2013 at 2:53
2
Solved
Suppose I have the following class:
template <typename T>
class MyClass
{
public:
void SetValue(const T &value) { m_value = value; }
private:
T m_value;
};
How can I write a special...
Ravi asked 13/10, 2012 at 22:4
1
Solved
I have this code:
template <class T>
class MyClass {
public:
template <class U>
void foo() {
U a;
a.invoke();
}
};
I want it in this form:
template <class T>
class MyClass {...
Schear asked 27/12, 2011 at 1:27
6
Solved
noob here still experimenting with templates. Trying to write a message processing class template
template <typename T> class MessageProcessor {
//constructor, destructor defined
//Code u...
Cannot asked 7/7, 2009 at 7:24
© 2022 - 2024 — McMap. All rights reserved.