Nana C++ Library. Reference for users.
What we need to use nana
Main Page
Related Pages
Namespaces
Classes
Examples
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Pages
helloword.cpp
#include <nana/gui.hpp>
#include <nana/gui/widgets/label.hpp>
int
main()
{
using namespace
nana;
form
fm;
label
lb(fm,
rectangle
(fm.size()));
lb.
caption
(
"Hello, World"
);
fm.show();
exec
();
}
Generated by
1.8.5