Bitwise operator question...1032 (9/30/2003 2:57:36 AM) I'm trying to figure out this question i was asked but am having no luck! here's the question: "Write a Program that swaps the contents of two variables without using any other variable. Use one of the bitwi... LittleHobo(2)
specifying ptr to instance of >=2 classes331 (10/1/2003 3:21:49 AM) ** Is there a way (C++ syntax) to specify that a pointer should refer to an object that derives from *two* specific classes? eg, Suppose I have two classes, 'A' and 'B', and I want to specify that pointer 'p... suzanne_e_vogel(38)
undefined symbol in module *.c338 (9/30/2003 7:05:58 PM) hello, I'm trying to write a C program that calls a function that written in assembly language(X86), but I keeps getting undefined error. I used paradigm C++ for linking and compiling. -----------------------... mr526(6)
operator<< for templated subclass? #2422 (9/30/2003 10:03:42 AM) Hi template specialists, I have a problem with the code listed below. What I wanted to do is defining an operator::subrange' object into a 'std::basic_os... nospam_gbr002_dontspam(2)
Removing characters from a file521 (9/30/2003 3:27:14 AM) Hi all, I've searched high and low (google, the FAQ & so on) and I can't seem to find any way of doing this. What I am trying to do is to edit text files (eg. ini files) and remove/replace data in the file wit... Tom
Server object122 (10/1/2003 3:50:44 AM) Hi, I wanted some suggestions on creating a server object. I want to create a class SearchEngineServer that listens on clients for a query and performs a search on database (or passes the request to the relev... sriram11
Class design question242 (9/30/2003 11:31:43 PM) I'm creating a database application using MFC (Microsoft Foundation Classes), Visual C++ 6.0. MFC has different classes for each type of data entry control (e.g. edit boxes, combo boxes). The interface to the... billt61(22)
Postal Lottery: Turn $6 into $60,000 in 90 days, GUARANTEED031 (10/1/2003 1:36:25 AM) Postal Lottery: Turn $6 into $60,000 in 90 days, GUARANTEED I found this in a news group and decided to try it. A little while back, I was browsing through newsgroups, just like you are now and came across a m... anon(388)
static member of template class130 (9/30/2003 10:01:54 PM) From Stroustrup( TC++PL, Appendix C.13 ) I thought that this was the way (and the only way perhaps) to have a common static member for all classes generated from a template. Though compiling this with MSVC++ 6... tino52(12)
using friend and template class2128 (9/27/2003 7:49:12 PM) Hi, is a construction like the following possible: template class template_clase { protected: template_clase() {} virtual ~template_clase() {} }; clase friend_class { ... sfaust_deleteme(13)