vote up 6 vote down star
1

I'm curious to know how the C++ community is spread over different types of applications. It's easy to tell with some other languages, for example ruby would be 90%+ web development, but I have no similar notion for C++. Also, if you care to add what platforms you develop on, and what platforms you develop for, it would give me a little more insight. If you find you lean heavily on some library (other than things like STL or boost), I'd like to hear it.

I'll start it off: I use C++ for embedded systems, and desktop applications (graphical only when required). I stick to Linux whenever I can, for both development and target, because I find gcc behaves itself a little better. I'm not sure if ACE is the default choice for network programming, but that's what I use, and it's used pretty frequently.

The embedded systems are controls for devices (run automatically based on sensors/time), and the desktop applications are data generation/transformation applications. All of these are for military applications.

What are you doing with C++?

flag
14  
I hate to be one of "those people"... but this really should be community wiki. Why should I get rep for saying that I'm making a game? – mmyers Apr 24 at 14:18
Don't worry about it, it's just a number on the screen. This is exactly what I was looking for. I think what I didn't mention is that I'm kind of trying to get a feel for what C++ libraries likely exist, that I haven't heard of or needed yet. It answers the question of where can I reasonably take C++. – greg-davies Apr 24 at 14:23
I actually think this question falls into "reasonable doubt" area; so, since you don't agree on it being CW, I'm not going to push it (not that I really could anyway). And I do think the question itself is appropriate. – mmyers Apr 24 at 14:42
Maybe the correct "Question" form should go along "Where should C++ be used", but that would limit the answers to the usual suspects. – joelr Apr 24 at 15:43
I don't get what this community wiki is. I can't find anything about it in the faq. – greg-davies Apr 24 at 17:11
show 1 more comment

closed as not a real question by George Stocker, Rich B, Welbog, 17 of 26, Neil Butterworth Apr 24 at 16:43

22 Answers

vote up 0 vote down

I'm using C++ to develop an open-source CAD package for designing Printed Circuit Boards. It has a novel, OpenGL based, zooming interface, which allows the user to layout freely bending tracks, which automatically bend out of the way if they need to. Uses wxWidgets and an opengl-based GUI I wrote.

http://www.liquidpcb.org

Hugo

link|flag
vote up 1 vote down

I'm using C++ and Qt to develop the soon to be released Intrig Data Monitor. This is a cross-platform desktop application that decodes protocol messages.

The underlying engine can process MB/sec of data, which requires the low level high-performance code that C++ is ideally suited for.

On the GUI side, Qt is also well suited for my needs. Their Model/View framework is used extensively and extremely responsive.

I haven't used boost for any development yet, just sticking with the STL, and using Qt networking classes for UDP.

link|flag
vote up 0 vote down

I currently work on a pretty popular collaboration system.

link|flag
vote up 1 vote down

I work for a global company that makes command and control systems for Public Safety customers (ie the 911 callcentre).

The local product is mostly made up of plugin modules loaded into a large MFC-based core. There are a lot of server-side interfaces too, these mostly communicate with the radio and other wireless networks to the patrols.

The product has some VB6 and .NET code in there too, but we've found them to be less than optimal. These bits are pretty, but in a lot of cases slow (we deal with thousands of events and patrol units and ambulances)(one roadside breakdown customer deals with thousands of events per hour, and there's a lot of database access going on.

There's a fair bit of geospatial work in there, but generally its managing where units are and and what they're doing/need to be doing next. There's a lot of algorithms to determine the best units to send to an event, as there's never enough ambulances to go to every event, or there's never one close enough to get there as quickly as you'd like!

link|flag
vote up 1 vote down

We Develop Multi Channel Retail Banking Systems: ATM clients, ATM switches, Internet Banking, SMS and IVR.

Majority of code is C++ and C. Mostly developed on windows with VC2005, but support Solaris aswell. Use CMake, ANT and luntbuild for building and continuous integration. Communication uses CORBA (Orbix). We use STL and BOOST for new code, however too much BOOST can cause problems on some unix platforms like Solaris with have very poor stl support. Orbix ties us to the native compiler and runtime library, we might be able to work around this with stdcxx. We are about to port to AIX which could be painful.

We use Java and C++ on Web and SMS; admin tools are written in .net.

Current faults with C++ are lack of developers (in Ireland) and lack open source libraries, BOOST is great but Java currently seams to have a much richer eco system.

link|flag
vote up 2 vote down

I'm using C++ (along with C, Python, ...) for ground-side support of spacecraft instruments, including sending commands to the spacecraft and processing telemetry and image data. The platforms we use are OpenBSD, Linux, and Mac OS X. We try to make all apps work on all platforms, both 32-bit and 64-bit. Except for actively visual applications we develop command line programs to maximize productivity of the users.

link|flag
vote up 0 vote down

Bjarne Stroustrop has a list of projects that use C++ here.

My job is to write a static analysis tool for the C++ language and it's written in C++!

link|flag
vote up 1 vote down

I work in a company that makes software for the Fashion industry.

It has some different applications in it, one is a CAD application (similar to Corel Draw) however it's targeted at Fashion Designers.

The other is one that places the Patterns onto the Thred to be cut by a machine.

link|flag
vote up 3 vote down

I have used C/C++ for desktop windows applications, database applications (worked on a full-text search engine written in C++), Unix/Linux systems programming, creating DSLs (with boost/spirit) and to write unmanaged DLLs in windows. I would also use C/C++ for a new project if it was a game, embedded system, OS level driver, or general systems programming.

in general, I prefer C++ for systems level programming in unix/linux

I prefer C# for ASP.NET and future windows desktop development.

I prefer java for when I want programming to seem like a chore.

I prefer Ruby for non-ASP web development

link|flag
vote up 1 vote down

I'm in the same boat as the question's author. I use C++ for defense contract work, leaning on STL/boost/mpich2/Intel IPP. From that list, you can probably guess that the system crunches lots of data. Mostly, it's doing radar signal processing.

Other languages considered were C, D, and python. I'm not using C because I rely on RAII to manage my resources. I'm not using D because I'd be the only one on my team who would bother to learn it before trying to code in it. I'm using python for some simulation (numpy/scipy), and I even made a prototype bridge to Intel's IPP to see how much of a speedup I could get. It was actually decent, but I didn't stick with it because it was a little too unorthodox for defense work.

link|flag
Wow, our situations are almost identical. I use numpy/scipy for sonar signal processing. I'd also like to go with D, but I'm worried I'll corner myself into a situation where I need a library that's only available for C++. – greg-davies Apr 24 at 14:37
You don't work for Sonalysts, do you? – Jim Hunziker Apr 24 at 15:23
No, my company mostly makes sonobuoys. – greg-davies Apr 24 at 15:53
vote up 2 vote down

The only paying job I had writing C++ (five years approx between from 2000-2005) was writing math intensive modules for Actuaries. C++ was chosen because it was fast and powerful (rolling forward Life Assurance policies until termination, could be millions of calculations per policy, with thousands of policies processed each night). The compiler was Borland C++ builder, on Windows 98 & XP.

I enjoyed my time with C++ immensely, however if I had to start a similar project again today I'd use C#, no real difference in speed, and very powerful without the complexity C++ imposes.

The last thing I used C++ for was a managed library for helper functions for an Epson tally printer (required for software I'm writing at home for my wife).

The Win32 samples supplied with the printer were several orders of magnitude faster than the C# & VB.net samples (the difference would be very obvious to any user of the software).

That's me and C++, I adored my time writing C++ and like working with it, but I make sure I need it before I choose to use it.

link|flag
vote up 0 vote down

I'm using it to keep my sanity while doing SSIS work. Project Euler has kept me from pulling my hair out some days.

link|flag
I love SSIS. I had so much fun with it at my last job. – greg-davies Apr 24 at 14:28
Don't get me wrong - there are worse things. However, the tasks we're doing with SSIS are a bit on the mechanical side. – Harper Shelby Apr 24 at 15:17
vote up 0 vote down

Embedded interactive applications and video games.

link|flag
vote up 0 vote down

I often use C++/CLI for .NET/native interop.

link|flag
vote up 0 vote down

Super high performance futures and options trading system.

link|flag
vote up 1 vote down

C++ and Qt framework crossplatform desktop applications. At work we use C++ and Qt for embedded systems.

link|flag
What kind of desktop applications are they? Do they tend to be for a specific industry? – greg-davies Apr 24 at 14:20
And for the embedded, do you use Qt in conjunction with an OS of some sort? I haven't found much documentation about running Qt directly over a custom framebuffer and input driver, although with some work this should be possible. It kinda sucks the GUI toolkits I've found for embedded all rely on an RTOS or are pricey and ugly. – joelr Apr 24 at 14:41
@joelr, We use Windows XP Embedded, so it's nothing spectaculair :) – corné Apr 24 at 15:06
@greg-davies, The desktop application at work are for shipbuilding, offshore industry etc. We had some C# applications, but because most of us are C++ programmers we're shifting back to C++ with Qt. – corné Apr 24 at 15:07
vote up 1 vote down

I use it for computation intensive calculations (stochfit.sourceforge.net), while the non-computationally intensive ones and my front end are written in C#. I think its great for number crunching, but I would have to be very convinced to use it for anything else where a managed equivalent was available.

link|flag
vote up 5 vote down

I use it for game development. Garbage collection just doesn't work in games.

Edit: I should note that it is not a problem of GCed languages being "slow." They have plenty enough throughput to get the job done (in fact I have sometimes seen higher throughput in Java than C++). The real problem is latency. GC causes unpredictable pauses. This is a real problem; don't let the C#/Java people tell you otherwise. Maybe someday they will solve the memory management problem, but until that day comes, I'll use C++ for low latency operations.

link|flag
It doesn't? What about Tribal Trouble? en.wikipedia.org/wiki/Tribal_trouble – mmyers Apr 24 at 14:19
gamedev.net/columns/interviews/… – mmyers Apr 24 at 14:20
3  
The Unreal Engine 3 uses garbage collection a lot. Tim Sweeney has said so at the Lambda the Ultimate forums. Here is a talk where he mentions it as well: store.cmpgame.com/product.php?id=56&cat=/… – bigmonachus Apr 24 at 14:30
5  
This is the 2009 version of "I use assembly for game development. Compiled languages just don't work in games" or "I write games for MS-DOS; disk paging and interrupts just doesn't work for games". Who can afford to let malloc(3) walk the free list when you want some memory now? – Ken Apr 24 at 14:59
2  
Ah, so when you say "GC just doesn't work in games", you really mean "I tried one language implementation that used (an untunable) GC and it didn't work for me". That's hardly damning to GC in general. :-) – Ken May 1 at 4:49
show 6 more comments
vote up 0 vote down

I am using it to do iPhone/Symbian crossplatform development.

link|flag
vote up 0 vote down

We use C++ in a real-time options trading & risk analytics platform; both front-end and back-end.

link|flag
vote up 2 vote down

I use it to develop drivers on Windows (Linux and other Nixes mostly use C for that purpose).

I also build embedded systems low-level code in C++, mostly to get basic services (I wouldn't call them drivers at this point) for a high-level scripting language to take advantage of.

link|flag
vote up 2 vote down

Just about everything - GUI, heavy data processing, image manipulation, producing documents in various formats, distributed processing, NT services, whatever other things the management asks on Windows and different Unix systems.

link|flag
Is there any common thread to these applications? It sounds like you're working on image processing software of some sort. – greg-davies Apr 24 at 14:25
1  
Well, yes. And we develop various solutions employing the algorithms we developed. Since the wider range of solutions we have the more money we get we end up making everything - desktop programs, servers, COM components, etc. – sharptooth Apr 24 at 14:58

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