Since 4/2/2012 5:44:02 AM, cf has written 3 articles and participated in 9 conversations. cf signature: cf
cf's articles:
Items(3) /1
shared_resource<T>130 (7/2/2004 4:44:40 PM) comp.lang.c++ I need a class similar to shared_ptr a(hBrush, ::DeleteObject); shared_resource a(hHandle, ::CloseHandle); shared_resource a(iFileHandleCRT, ::close); Any hints? ... CFG
Macro to declare identical char and wchar_t string literals7194 (6/25/2004 12:06:22 AM) comp.lang.c++.moderated I was thinking if there is a legal way to implement a macro like this #define DECL_STRING(name, strValue) which will be used as follows DECL_STRING(APPLE, "apple") this line will expand to create three macros ... CFG
com_ptr<T>528 (6/16/2004 9:50:24 PM) comp.lang.c++ Is there a ready-to-use C++ smart pointer class working on top of COM reference counting mechanism. Did anyone manage to tailor one of the available smart pointer libs to handle COM objects? Probably I can u... CFG
cf's replies:
Items(4) /1
Interview questions #36918 (6/21/2004 1:57:41 PM) comp.lang.c++ Dear friends, I have one more questions for everyone in the newsgroup: I am preparing for an interview on UNIX/C++. Could you please identify some of the most important questions which might be asked, so that ... cj6072(9)
To Borland Builder or to Visual Studio1736 (6/21/2004 5:05:03 PM) comp.lang.c++ Hi. I want to get a C++ IDE, but I dont know whether to go for Bill Gate's solution or Borland's. Could any kind folks detail the relative strength and weaknesses of both, and also tell me which you yourselve... one_ziggi(5)
Unicode strings1031 (6/22/2004 12:12:33 PM) comp.lang.c++ Hello all, What strategy should I use in solving the following problem? I have a list of unicode strings which I would like to compare with its English language 'equivalent.' eg "reykjav�k" (note the accent a... andrew_on_tour(5)
bitcounting on 30000+ bits, but not byte aligned1025 (6/24/2004 9:41:50 PM) comp.lang.c++ I have an array that contains over 30000+ bits. The size varies at runtime. I need to move through this chunk of memory and count bits every so often. Example: First 9 bits has 2 ones, next 10 bits has 4 on... emedlin(18)