Tag Archives: qt

C# HTTP Request

A few years ago I’ve written an article on how to perform a synchronous HTTP request using Qt 4.2. I I’ve seen this article today and since now I’m mostly working with C# i was wandering how fast can i do the same thing in c#. After very few minutes I’ve managed to came up with this:
using System;
using System.Net;
using System.IO;

class Program
{
static… read full article

Nokia to Add LGPL to Qt Licensing Model

This is incredible news. No point in making this post longer … who knows what this means understands why it’s incredible. Who does not know what this means … won’t care anyhow :)

http://www.qtsoftware.com/about/news/lgpl-license-option-added-to-qt

And when i first heard about nokia buying trolltech i thought i’ll have to forget about Qt… read full article

Virtual Destructors

When do you need to declare a destructor virtual?

Recently I’ve been involved in a thread on qt-interest mailing list about virtual destructors. A few people there suggested that you should always make the destructor of your class virtual. I strongly disagree. … read full article