Posts by RHER WOLF • 1,529 points
54 posts
-
-1
votes2
answers88
viewsA: Is it possible to view all the content of a C++ namespace?
In the sense of scope visibility throughout the programme, yes, it is possible to view all the content of a namespace because it is not possible to define private things in the namespace scope (that…
-
1
votes3
answers238
viewsA: Error while trying to overload Operators with dates
First, the second constructor is not setting the separator (the string sep) with a default value defined by you. The assigned separator is therefore "". Date(int _d, int _m, int _a, std::string…
-
2
votes2
answers470
viewsQ: How do I get Qt 5.7 with MSVC2015 to work?
I’ve had Microsoft Visual Studio Community 2015 for a long time. I installed Qt 5.7 via online installer and includes msvc2015 (already marked) in the list of installation programs. I tried using Qt…
-
1
votes1
answer445
viewsQ: Assembly and C++ with Visual Studio 2015 and MASM x86/64
Good night. I use Visual Studio 2015 and usually programming in Assembly language via __asm, but I still have doubts about how to use MASM to create code in Assembly for x64. I need help to take the…