Click here to Skip to main content
15,900,565 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: graphics.h multi-threading problem Pin
Richard MacCutchan28-Dec-12 23:07
mveRichard MacCutchan28-Dec-12 23:07 
GeneralRe: graphics.h multi-threading problem Pin
yudhistira dewanata30-Dec-12 5:01
yudhistira dewanata30-Dec-12 5:01 
AnswerRe: graphics.h multi-threading problem Pin
Randor 29-Dec-12 8:25
professional Randor 29-Dec-12 8:25 
GeneralRe: graphics.h multi-threading problem Pin
Richard MacCutchan29-Dec-12 21:28
mveRichard MacCutchan29-Dec-12 21:28 
GeneralRe: graphics.h multi-threading problem Pin
yudhistira dewanata30-Dec-12 5:30
yudhistira dewanata30-Dec-12 5:30 
GeneralRe: graphics.h multi-threading problem Pin
Randor 31-Dec-12 11:14
professional Randor 31-Dec-12 11:14 
GeneralRe: graphics.h multi-threading problem Pin
yudhistira dewanata31-Dec-12 16:48
yudhistira dewanata31-Dec-12 16:48 
QuestionHow to find the similarity between users in Twitter ? Pin
ldaneil27-Dec-12 7:21
ldaneil27-Dec-12 7:21 
AnswerRe: How to find the similarity between users in Twitter ? Pin
André Kraak27-Dec-12 8:05
André Kraak27-Dec-12 8:05 
QuestionScrollBar is not Displaying Automatically Pin
002comp26-Dec-12 23:01
002comp26-Dec-12 23:01 
AnswerRe: ScrollBar is not Displaying Automatically Pin
April Fans27-Dec-12 14:22
April Fans27-Dec-12 14:22 
GeneralRe: ScrollBar is not Displaying Automatically Pin
Richard MacCutchan27-Dec-12 21:38
mveRichard MacCutchan27-Dec-12 21:38 
Question[SOLVED] Enhanced tool tips for ribbon markup file? Pin
Brandon-X1200026-Dec-12 6:18
Brandon-X1200026-Dec-12 6:18 
AnswerRe: Enhanced tool tips for ribbon markup file? Pin
Richard MacCutchan26-Dec-12 23:34
mveRichard MacCutchan26-Dec-12 23:34 
GeneralRe: Enhanced tool tips for ribbon markup file? Pin
Brandon-X1200027-Dec-12 10:12
Brandon-X1200027-Dec-12 10:12 
GeneralRe: Enhanced tool tips for ribbon markup file? Pin
Richard MacCutchan27-Dec-12 21:33
mveRichard MacCutchan27-Dec-12 21:33 
QuestionCasting structures - another basic question Pin
Vaclav_24-Dec-12 4:38
Vaclav_24-Dec-12 4:38 
AnswerRe: Casting structures - another basic question Pin
Richard MacCutchan24-Dec-12 5:19
mveRichard MacCutchan24-Dec-12 5:19 
GeneralSOLVED Casting structures - another basic question Pin
Vaclav_24-Dec-12 8:04
Vaclav_24-Dec-12 8:04 
GeneralRe: SOLVED Casting structures - another basic question Pin
Erudite_Eric2-Jan-13 7:13
Erudite_Eric2-Jan-13 7:13 
QuestionHow to count pages in PDF file using VC++ Pin
shanmugarajaa23-Dec-12 18:00
shanmugarajaa23-Dec-12 18:00 
AnswerRe: How to count pages in PDF file using VC++ Pin
Richard MacCutchan23-Dec-12 22:04
mveRichard MacCutchan23-Dec-12 22:04 
AnswerRe: How to count pages in PDF file using VC++ Pin
Jijo.Raj26-Dec-12 23:29
Jijo.Raj26-Dec-12 23:29 
QuestionHow to implement C++ raw string literals in VIsual C++ 2010? Pin
Falconapollo22-Dec-12 18:03
Falconapollo22-Dec-12 18:03 
As you may already know, new string literals in C++ 11 can be expressed in a very flexible way.

R"<delim>...<delim>"; - in this code the <delim> can be pretty much everything and also no escape characters are needed. Any kind of parentheses can be used to delimit the end of string, Raw string literals are especially useful when defining regular expressions:

R"(I love those who yearn for the impossible. (Von Goethe, "Faust"))";

Blocks of text can be simply defined using equal occurrences of same characters:

C++
R";***************************( ; TINY BASIC FOR INTEL 8080
; VERSION 2.0
; BY LI-CHEN WANG
; MODIFIED AND TRANSLATED
; TO INTEL MNEMONICS
; BY ROGER RAUSKOLB
; 10 OCTOBER, 1976
; @COPYLEFT
; ALL WRONGS RESERVED ) ;***************************";


More information can be found here http://en.wikipedia.org/wiki/C++0x#New_string_literals[^] (Wikipedia).

I want to implement it with C++ processor, here is what I have. Now double quotation marks are not supported, and I need to compete it like C++ 11. Can anyone help me?

C++
#define STR(a) #a
#define R(var, re)  static char var##_[] = STR(re);\
const char * var = ( var##_[ sizeof(var##_) - 2] = '\0',  (var##_ + 1) );


You can use it like this:

C++
R(re, "\w\d");//It's OK, no warnings.


The code is not friendly to use. So I want the feature like C++ 11 raw string literals.

PS: I'm using Visual C++ 2010, the new feature is not supported, I must implement it by myself.
Questionproblems returning/printing poiner Pin
doughyi8u20-Dec-12 14:16
doughyi8u20-Dec-12 14:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.