Click here to Skip to main content
15,886,199 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
AnswerRe: problems returning/printing poiner Pin
Jochen Arndt20-Dec-12 21:15
professionalJochen Arndt20-Dec-12 21:15 
AnswerRe: problems returning/printing poiner Pin
Richard MacCutchan20-Dec-12 22:47
mveRichard MacCutchan20-Dec-12 22:47 
GeneralRe: problems returning/printing poiner Pin
Jochen Arndt20-Dec-12 23:07
professionalJochen Arndt20-Dec-12 23:07 
GeneralRe: problems returning/printing poiner Pin
Richard MacCutchan21-Dec-12 0:19
mveRichard MacCutchan21-Dec-12 0:19 
QuestionC++ ownerdrawfixed combobox "header" Pin
NoviceEx19-Dec-12 2:49
NoviceEx19-Dec-12 2:49 
AnswerRe: C++ ownerdrawfixed combobox "header" Pin
jeron119-Dec-12 4:19
jeron119-Dec-12 4:19 
QuestionHow to make a project resolution independent.? Pin
mbatra3118-Dec-12 23:56
mbatra3118-Dec-12 23:56 
AnswerRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 0:29
professionalJochen Arndt19-Dec-12 0:29 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 0:39
mbatra3119-Dec-12 0:39 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 0:52
professionalJochen Arndt19-Dec-12 0:52 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 1:25
mbatra3119-Dec-12 1:25 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 1:33
professionalJochen Arndt19-Dec-12 1:33 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 1:44
mbatra3119-Dec-12 1:44 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 2:06
professionalJochen Arndt19-Dec-12 2:06 
AnswerRe: How to make a project resolution independent.? Pin
Alan Balkany19-Dec-12 4:25
Alan Balkany19-Dec-12 4:25 
GeneralRe: How to make a project resolution independent.? Pin
Kimcopeland2-Apr-21 16:18
Kimcopeland2-Apr-21 16:18 

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.