5 Unanswered Topics

Remove Filter
Member Avatar for
Member Avatar for darkeclipse8

---------------------------------------------TSet.h------------------------------------------------------ #include <iostream> using namespace std; template <class V> class TSet { public: TSet(); TSet(int size); ~TSet(); void add(V new_item); void remove(V item_to_remove); int num_of_items(); bool isFull(); bool is_item_in_set(V item); friend bool operator==(const TSet<V>& left, const TSet<V>& right); friend bool operator!=(const TSet<V>& left, const TSet<V>& right); friend ostream& operator<<(ostream& outs,const …

0
151
Member Avatar for Haranadh

Hi Friends, I am new to this XML & XSL. I want to write a template which takes two arguements and it should take the node name and node value. in template i want to format the input value. Please share if any one can guide me on this. The …

0
131
Member Avatar for himanshujain

hi, folks. I want to use flash templates in my asp.net application, bt dont know how to do it. So i hv basically two questions to ask: 1) Is it possible to use flash templates without much difficulty in asp.net project. 2) Can we somehow using some tool or application …

-1
65
Member Avatar for vishalkhialani

Hi, I am searching for a software to help me make my sites templates. I currently use [url]http://www.artisteer.com/[/url] but was wondering if there are any other ones out there. Cheers, Vishal

0
117
Member Avatar for akosmaroy

while syntactically templates cannot be virtual functions, I wonder what approach to use when semantically this is what someone wants to do. for example, in my case I want to have a virtual function, because I'm using sub-classes while having a pointer to the base class, but I also want …

0
81

The End.