vote up 11 vote down star
7

Do you know of well designed open source applications that are instructive to analyse?

Specifically, I'm interested in practical applications object-relational mapping in C++ based programs, where there is a good separation between a domain model and persistence/serialization functionality.

flag

51% accept rate
I'd be interested to see this too. I'm pretty much convinced that it's impossible to actually code good OO in C++ due to lack of GC and the weight of new classes and the nature of C++ programmers to resist constant memory allocations/deallocations (new objects). Most OO programmers I know agree. – Bill K Oct 24 '08 at 16:52
@Bill K Nonsense. – JimDaniel Oct 24 '08 at 18:18

3 Answers

vote up 0 vote down

While this doesn't fit your specific requirements (it's not a business app for a start), I think that OGRE 3D is a great example of an open source C++ project.

link|flag
vote up 3 vote down

If you include well designed open source libraries that are instructive to analyse, have a look at Boost.

About persistence / serialization (not relational mapping though), have a look at Boost Serialization, you might find nice ideas!

"...one of the most highly regarded and expertly designed C++ library projects in the world." — Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

"Item 55: Familiarize yourself with Boost." — Scott Meyers, Effective C++, 3rd Ed.

"The obvious solution for most programmers is to use a library that provides an elegant and efficient platform independent to needed services. Examples are BOOST..." — Bjarne Stroustrup, Abstraction, libraries, and efficiency in C++

link|flag
vote up 1 vote down

V8 javascript engine is said to be very well engineered. http://code.google.com/p/v8/

Google Chrome also has an interesting architecture and high quality code base. http://code.google.com/chromium/

Both are open source, under BSD-like license.

link|flag

Your Answer

Get an OpenID
or

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