Tagged Questions
5
votes
5answers
889 views
What is the smallest embedded browser I can use in C++?
I need to build my application GUI using HTML/CSS/JavaScript
with a C++ backend all cross platform. I made simple tests
with QtWebKit, XULRunner and Mozilla.
Well from the simple testes I notice ...
4
votes
8answers
568 views
Small native cross-platform GUI framework for C++
I wrote a small program with Boost in c++. It works fine and so I want to give it a graphical interface so that it is easier to use.
In order to do so, I am looking for small cross-platform framework ...
1
vote
5answers
90 views
Using char for small integer (C++)
I read that one can use "char" for small integers. However, when I try,
unsigned char A = 4;
std::cout << A << std::endl;
it gives a character, not 4.
0
votes
4answers
256 views
Tiny serializer
I have a family of classes that contain only variables of the following types: std::string, int, double. I should be able to serialize/deserialize objects of these classes to/from C string (null ...