0
votes
1answer
21 views
Python subclass with C++ baseclass
I have some C++ I have exposed to Python through SWIG. In there is a base class with a single pure virtual function.
In Python, I import my module and define a class that uses the …
0
votes
4answers
11 views
encoding conversion from JIS X 208 to UNICODE
How can I convert a JIS X 208 encoded string into UNICODE in C++? A VC++ specific answer would be helpful.
The bigger problem that I am finding difficulty in understanding is tha …
1
vote
1answer
23 views
Slow response from getaddrinfo
I'm using getaddrinfo to do DNS queries from C++ on Windows. I used to use the Windows API DnsQuery and that worked fine, but when adding IPv6 support to my software I switched to …
1
vote
1answer
18 views
How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?
I have a COM function that should return a SafeArray via a LPSAFEARRAY* out parameter.
The function creates the SafeArray using ATL's CComSafeArray template class.
My naive impleme …
2
votes
1answer
68 views
VC++ ‘Generating Code’, what does it mean?
WHen compiling in visual studio the compiler outputs this at what seems to be its own discretion:
1>Generating Code...
what is it doing here exactly?
0
votes
3answers
92 views
Design and Readbility.
Hi all,
I am working on a project written in C++ which involves modification of existing code. The code uses object oriented principles(design patterns) heavily and also complicate …
2
votes
2answers
58 views
Exposing unmanaged const static std::string in a managed C++ class
I have a non-.NET C++ class as follows:
Foo.h:
namespace foo {
const static std::string FOO;
...
}
Foo.cc:
using namespace foo;
const std::string FOO = "foo";
I want to …
0
votes
1answer
21 views
Custom painting QMainWindow title bar
Does anybody know how can I customize title bar of a main window in QT? I would like to make some custom painting over the "normal" drawing.
The QT version I'm interested in is 4. …
0
votes
2answers
23 views
Q_Object with no type…
The error I am receiving:
g++ -c -g -I/usr/lib/qt-3.3/include TCPEchoServer.cpp
Product.h:22: error: ISO C++ forbids declaration of âQ_Objectâ with no type
Product.h:24: er …
2
votes
3answers
94 views
what’s the differences between .dll , .lib, .h files ?
why in a project should include some *.lib, .h or some other files ? and what are these things used for ?
1
vote
1answer
40 views
Base Class Pointer to Hold Boost Enum
Currently, I am using a type-safe enum class from Boost Vault :
http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using
I found it is difficult to have a …
2
votes
4answers
197 views
What does this code-snippet do?
Question:
Given the following code snippet:
bool foo(int n) {
for(int i=3;i<sqrt(n)+0.5;i+=2)
{
if((n%i)==0){
return false;
}
}
re …
0
votes
5answers
108 views
If you had the time and inclination to create a programming language, what characteristics would it have? [closed]
Just curious. If you had the time and inclination to create a programming language, what characteristics would it have?
One language I would like to see would borrow as much from …
0
votes
6answers
110 views
suggest some online compiler for c/c++
hello,
I am developing a website for which I need an online c/C++ compiler for testing codes online.
Is there any possible and feasible solution for this.
i need this compiler s …
0
votes
1answer
21 views
How can I add widgets to title bars in QMainWindow?
Is any posibility to add widgets in titlebar of QMainWindow?
I try to avoid "emulate" a title bar by making a custom widget for that and hiding the default title bar (from Qt::Win …
