Re: Qt Open Source License :: Mixing GPL and closed-source license
I am not sure, but I think you may be ok. I mean there are plenty of GPL'ed applications written in Win32 API, or MFC, which are very much closed source. With these, you indeed have to link against the respective libraries, which are again closed. Maybe I am not understanding the situation. And also i am no lawyer.
Bojan
The march of progress:
C:
printf("%10.2f", x);
C++:
cout << setw(10) << setprecision(2) << showpoint << x;
Java:
java.text.NumberFormat formatter = java.text.NumberFormat.getNumberInstance();
formatter.setMinimumFractionDigits(2);
formatter.setMaximumFractionDigits(2);
String s = formatter.format(x);
for (int i = s.length(); i < 10; i++) System.out.print(' ');
System.out.print(s);
Bookmarks