up vote 13 down vote favorite
6
share [g+] share [fb]

I was told that to be a good developer, you should read a lot of other peoples source code. I think that sounds reasonable. So I ask you, what is the most beautifully written piece of open source software that is written in c++ out there?

(Apply any definition of beautiful you like.)

link|improve this question
this is bound to get closed as either subjective or not a real question. so don't take it hard. – gigantt.com Jul 4 '09 at 9:08
@Assaf Well, he could mark it as a community wiki... just a thought. – Paulo Santos Jul 4 '09 at 9:49
1  
I agree on the community wiki... bjakef, you should click the edit button at the bottom of your question, and click the check box marked "community wiki" and save it... otherwise this will very likely be closed – Matthew Scharley Jul 4 '09 at 10:04
1  
"Beauty is in the eye of the beholder", or so they say... we generally don't like subjective questions on SO, though marking them as community wiki generally appeases people. – Matthew Scharley Jul 4 '09 at 10:05
1  
Beauty? C++? ... can't think of any :P – Aiden Bell Jul 4 '09 at 10:12
show 3 more comments
feedback

9 Answers

up vote 2 down vote accepted

You could look at the source code of MySQL GUI Tools. Its written using gtkmm, and the code does some interesting difficult-to-implement GUI things.

link|improve this answer
feedback

IMHO...

Notepad++

link|improve this answer
feedback

Loki is a pretty nice library especially if you're interested in how design patterns and various idioms are expressed in C++. Reading the source might also be a good way to understand C++'s metaprogramming facility using templates.

http://loki-lib.sourceforge.net/

link|improve this answer
feedback

Qt creates beautiful GUIs. Code in C++ and you get awesome screens! But I think the OP has asked for some good C++ code repositories.

link|improve this answer
feedback

Check the arora browser sources. It shows the beauty of the Qt toolkit and elegant and well written code for a somewhat complex application.

link|improve this answer
feedback

Tou should take a look at the source code of NetBSD. It's really clear and well documented.

link|improve this answer
I've heard nice things about the NetBSD source, but I think the question is specifically about about C++ source. – ejgottl Jul 6 '09 at 3:55
feedback

It think "Qt"

link|improve this answer
feedback

I've heard that Google's Chromium source code is very clean.

link|improve this answer
feedback

The source code for the Poco C++ libraries is very neat as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.