3
votes
8answers
209 views
What’s An Algorithm or code for obtaining ordinal position in a list sorted by value in c++
Hi,
This is similar to a recent question.
I will be maintaining sorted a list of values. I will be inserting items of arbitrary value into the list. Each time I insert a value, …
5
votes
5answers
184 views
C++ template partial specialization - specializing one member function only
Hi everybody,
Bumped into another templates problem:
The problem: I want to partially specialize a container-class (foo) for the case that the objects are pointers, and i want to …
1
vote
5answers
50 views
Templates or similar for JavaScript programs in the browser
I've done a lot of server-side HTML programming and used a number of different template languages for producing (X)HTML. This part is very clear to me.
But what I'm wondering a bi …
6
votes
5answers
180 views
C++ implicit template instantiation
I currently have a class hierarchy like
MatrixBase -> DenseMatrix
-> (other types of matrices)
-> MatrixView -> TransposeView
…
4
votes
7answers
90 views
Choosing between PHP frameworks and template systems
I have a moderately simple assignment, to create a PHP/PDO site with login functionality and article retrieve/save/edit/search. No tags, nothing else.
Is this overkill to use some …
0
votes
4answers
82 views
C++ template parameter in array dimension
I have have the following code using templates and array dimension as template non-type parameter
template<int n> double f(double c[n]);
...
double c[5];
f<5>(c); // …
1
vote
2answers
61 views
How to have templated function overloads accept derived classes from different base classes?
I want to be able to define
template <class TX>
void f(const TX &x){ ... }
template <class TY>
void f(const TY &x){ ... }
where TX must be derived from BaseX …
0
votes
1answer
21 views
BeginEdit of a specific Cell from code behind
Is possibile begin edit of a specific cell from code behind with DataGrid control (WPF Toolkit)?
I have to enable the celledittemplate of first cell of selected row after a button …
0
votes
4answers
71 views
PHP html email, using html template
so i'm trying to do a do a html mail sytem and my html i want to be a template, stored in a separate file like :
<div clas="headr"></div>
<div class="content"&g …
0
votes
5answers
93 views
Is it possible to choose a C++ generic type parameter at runtime?
Is there a way to choose the generic type of a class at runtime or is this a compile-time thing in C++?
What I want to do is something like this (pseudocode):
Generictype type;
i …
0
votes
2answers
35 views
Template Parsing and Reflection
I'm writing a content management system in ASP.NET/C# which the template of the site is defined in a html file. I am passing parameters to the html file with blocks. A block starts …
1
vote
4answers
51 views
Templated HTML Editor
Hi, I'm looking for a HTML editor that kinda supports templated editing or live snippets or something like that.
Background: I'm working on a website for a friend. As there are no …
0
votes
3answers
67 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> …
0
votes
3answers
17 views
list of controls with templates in silverlight
Does anyone know where to find a list of controls that you can set the template on in Silverlight? I've wasted several hours now trying to create control templates only to find th …
0
votes
1answer
14 views
How to create a submit button template in Oracle APEX?
Hey all,
I'm trying to create a template for a button in Oracle APEX but I don't seem to have access to the appropriate substitution strings to make it work. For non-templated bu …
