0
votes
2answers
22 views
Partially defaulting template arguments using typedefs?
I am trying to do something like this:
template <typename T,bool Strong=true>
class Pointer {...};
template <typename T>
typedef Pointer<T,false> WeakPointer;
…
4
votes
4answers
113 views
When does template instantiation bloat matter in practice?
It seems that in C++ and D, languages which are statically compiled and in which template metaprogramming is a popular technique, there is a decent amount of concern about template …
1
vote
3answers
86 views
Refactoring function pointers to some form of templating
Bear with me as I dump the following simplified code: (I will describe the problem below.)
class CMyClass
{
...
private:
HRESULT ReadAlpha(PROPVARIANT* pPropVariant, SomeLib: …
1
vote
2answers
27 views
How would you share a theme between a Django app and a Wordpress blog?
Trying to keep a consistent look & feel between a django site and a wordpress blog is turning into somewhat of a pain and I'm wondering if there's a way to set it up so that st …
6
votes
4answers
152 views
How to reduce template arguments?
Here I have functor of the follow kind:
template<class T, class Foo, T Foo::*p>
struct X {
void operator()(Foo & f) {
(f.*p) = 12 * (f.*p); // simple example. c …
4
votes
8answers
228 views
How to explain C++ templates to junior developers?
One could break the question into two: how to read and to write templated code.
It is very easy to say, "it you want an array of doubles, write std::vector<double>", but it …
0
votes
3answers
102 views
Can I extract C++ template arguments out of a template class?
Basically, given a template class like this:
template< class Value > class Holder { };
I would like to be able to discover the type Value for a given Holder class. I thoug …
2
votes
2answers
61 views
Detecting the browser language of choice with PHP
Hello guys, I'm trying to implement this code to have different files to load for german, spanish or english browser languages of choice.
The case is that with my spanish IE I stil …
2
votes
5answers
99 views
Is compiler allowed to ignore inline in case of template specialization?
Hello everybody.
Lets say you have simple template function (not class member for the sake of simplicity) with type specific specialization in the same .h file...
template <cla …
3
votes
3answers
112 views
templated operator() overload C++
someone already asked this question, but the thread ended up with the original question not getting answered.
suppose you have this:
template<size_t i, class f_type>
void c …
0
votes
2answers
23 views
Web templating (struts tiles) - best solution to indicate current page?
I would like to indicate the currently chosen page in a shared menu component of a web page in a Struts Tiles project.
I can think of some possible solutions
check current URL
…
1
vote
4answers
106 views
simulate C++ function template instantiation with implicit conversion
I already asked two questions related to what I'm trying to do (one resolved, one of which I will close soon). I know that C++ template instantiation does not allow any implicit co …
0
votes
1answer
34 views
CakePHP same ‘view’ for multiple functions
I have a Cakephp project
the controller has several different methods.
function Index()
function IndexAuthor()
And I want to use the same 'view' (or template, Index.ctp) for b …
1
vote
3answers
45 views
Template function with dependent type parameters within template class
Hi, I've been trying to do this simple stuff and Visual studio 2008 does not seems to like it.
template <class CharType>
class SomeClass
{
public:
template <class T1, …
0
votes
2answers
76 views
What’s A QT Or Open Source C++ Template For Ordinal Sorting
Hi,
I am looking for a special template class, hopefully either a QT template or a self-contained open source library. This template class is intended to act as a container for a …
