Code: Send out the brain pods

proviamo un po’ il plugin per la syntax highlight
[sourcecode language=”cpp”]
#include <QtCore>

class Rectangle : public Shape
{
public:
Rectangle();
Rectangle(int width, int height);
Rectangle (&Rectangle one);
~Rectangle();
virtual int Area(); // of course!!
virtual int Perimeter();
private:
int witdh;
int height;
};

void LightMyWay()
{
qDebug << "Oh, My Gosh";
}
[/sourcecode]