Click here to Skip to main content
15,911,762 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: problem with tamplate deque Pin
Aescleal28-May-12 5:22
Aescleal28-May-12 5:22 
GeneralRe: problem with tamplate deque Pin
a1_shay28-May-12 18:32
a1_shay28-May-12 18:32 
QuestionRe: problem with tamplate deque Pin
David Crow28-May-12 16:58
David Crow28-May-12 16:58 
QuestionHow to integrate cxxTest with Visual Studio IDE Pin
rajKR1227-May-12 19:14
rajKR1227-May-12 19:14 
AnswerRe: How to integrate cxxTest with Visual Studio IDE Pin
Aescleal28-May-12 5:25
Aescleal28-May-12 5:25 
GeneralRe: How to integrate cxxTest with Visual Studio IDE Pin
rajKR125-Jun-12 19:03
rajKR125-Jun-12 19:03 
QuestionCross Platform Development Pin
AmbiguousName27-May-12 0:49
AmbiguousName27-May-12 0:49 
AnswerRe: Cross Platform Development Pin
enhzflep27-May-12 6:16
enhzflep27-May-12 6:16 
AnswerRe: Cross Platform Development Pin
Aescleal28-May-12 5:06
Aescleal28-May-12 5:06 
QuestionApplication Watchdog Pin
Richard Andrew x6426-May-12 16:43
professionalRichard Andrew x6426-May-12 16:43 
AnswerRe: Application Watchdog Pin
«_Superman_»26-May-12 17:30
professional«_Superman_»26-May-12 17:30 
GeneralRe: Application Watchdog Pin
Richard Andrew x6426-May-12 17:42
professionalRichard Andrew x6426-May-12 17:42 
AnswerRe: Application Watchdog Pin
Ashish Tyagi 4029-May-12 19:41
Ashish Tyagi 4029-May-12 19:41 
QuestionTask Manager Pin
Bram van Kampen26-May-12 12:46
Bram van Kampen26-May-12 12:46 
AnswerRe: Task Manager Pin
Randor 26-May-12 13:07
professional Randor 26-May-12 13:07 
AnswerRe: Task Manager Pin
«_Superman_»26-May-12 17:23
professional«_Superman_»26-May-12 17:23 
GeneralRe: Task Manager Pin
Bram van Kampen27-May-12 4:44
Bram van Kampen27-May-12 4:44 
QuestionUsing namespace in VC6.0 ? Pin
Vaclav_26-May-12 6:53
Vaclav_26-May-12 6:53 
AnswerRe: Using namespace in VC6.0 ? Pin
jschell26-May-12 7:32
jschell26-May-12 7:32 
AnswerRe: Using namespace in VC6.0 ? Pin
Chris Losinger26-May-12 8:23
professionalChris Losinger26-May-12 8:23 
AnswerRe: Using namespace in VC6.0 ? Pin
Vaclav_26-May-12 14:51
Vaclav_26-May-12 14:51 
GeneralRe: Using namespace in VC6.0 ? Pin
Chris Losinger26-May-12 17:48
professionalChris Losinger26-May-12 17:48 
GeneralRe: Using namespace in VC6.0 ? Pin
Vaclav_26-May-12 18:32
Vaclav_26-May-12 18:32 
GeneralRe: Using namespace in VC6.0 ? Pin
Chris Losinger27-May-12 3:02
professionalChris Losinger27-May-12 3:02 
AnswerRe: Using namespace in VC6.0 ? Pin
Aescleal26-May-12 20:53
Aescleal26-May-12 20:53 
You've probably left a semicolon, closing brace, closing parentheses or similar off the previous thing in the .h file.

Just out of interest, if you ever want to know if you can use a feature in a compiler just lop the code out and stick it in a .cpp file somewhere, making sure it's not dependent on any other code. In this case had you stuck:
C++
namespace Test
{
    int a;
    int b;
}
in a source file you'd have seen it compiles just fine in VC++6.0. As far as anything can be regarded as "compiling just fine" on that clunky piece of old rubbish.

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.