views:

7515

answers:

5

Just curious, are there c++ frameworks out there which resemble django-python , symphony-php, or spring-java?

Gath

+2  A: 

I don't know anything about django-python , symphony-php, or spring-java, but to me, Qt is the best (or one of the best) C++ framework available.

Donotalo
Wrong. He asked for web frameworks.
Vulcan Eager
He edited his question and question title after I replied. Please see Mark's comment in OP's question.
Donotalo
+11  A: 

Here is one web toolkit in c++ Wt (pronounced 'witty') is a C++ library and application server for developing and deploying web applications. It is not a 'framework', which enforces a way of programming, but a library.

yesraaj
+5  A: 

The best solution avaliable for you is Wt is a Web Toolkit (Wt) that allows you to create high performance AJAX applications and is inspired on Nokia's Qt.

Do you need to know that a C++ applications won't work in all web servers, because it has dependencies and require an extra apache module or a custom httpd.

Good luck with your project.

xgoan
+8  A: 

CppCMS: http://cppcms.sourceforge.net

It is MVC framework that had taken many ideas from Django.

Artyom
It looks more promising than Wt because it obeys separation of concerns principle of django.
hamdiakoguz
+1 CppCMS is more of a web framework then Wt.
jpyllman
A: 

Check out the ffead c++ application framework (http://code.google.com/p/ffead-cpp/), its developed on the lines of Spring for JAVA.

Sumeet