C++ is a widely-used, statically-typed, free-form, compiled, multi-paradigm, multi-level, imperative, general-purpose, object-oriented programming language based on C.

learn more… | top users | synonyms (1)

3
votes
5answers
232 views
+50

Measure memory usage of a distributed application

What is the best way to measure memory usage of a distributed application? I'm not sure if using ps on each machine is the best approach on this problem -- the saner the solution, the better (: ...
3
votes
0answers
112 views
+50

Non - blocking RPC invocation, using gSoap

Is this even possible? I know, I can make a one-way asynchronous communication, but I want it to be two-way. In other words, I'm asking about the request/response pattern, but non-blocking, like ...
0
votes
1answer
156 views
+50

Strange unhandled exception; Access violation reading location

When I try to call SDL_DisplayFormatAlpha, I get this unhandled exception: "Unhandled exception at 0x68125981 (SDL.dll) in herorpg.exe: 0xC0000005: Access violation reading location 0x0000013C." ...
4
votes
2answers
224 views
+500

Decoding audio data

I am trying to decode an Opus file back to raw 48 kHz. However I am unable to find any sample code to do that. My current code is this: void COpusCodec::Decode(unsigned char* encoded, short* ...
1
vote
2answers
86 views
+50

Sharing class pointers between processes (UPDATED)

I have a server library which my client executable injects into a remote process. It is the server's responsibility to set up some sort of IPC/RPC implementation to allow the client to seamlessly ...
2
votes
0answers
47 views
+50

How to Expose Boost::shared_ptr<T> to Tcl + SWIG interface file?

I want to expose the boost::shared_Ptr to Tcl layer using SWIG. but currently I don't know I could Expose this. I found out that SWIG/Lib folder contains the interface file for shared_ptr.i. But in ...
0
votes
1answer
45 views
+50

API or library for server-client configuration management

In software project I am working in, we will have a management server and hundreds of clients. That management server will define policies and send clients(or clients will take that). I think, that ...
1
vote
3answers
97 views
+100

How to prepare a build job that produces .dll and unix .so on single Windows environment?

How to create a C++ single build job that will produce .dll working on windows and .so prepared to work on Unix? Suppose that our development environment is based on Windows.
-2
votes
1answer
74 views
+50

Output select to string using c++ connector

How would I go about putting all the output from the while loop of a standard SELECT with the MySQL C++ connector into a string with delimiters to separate the output? I am quite new to C++ and ...
1
vote
1answer
172 views
+50

OpenGL fade issue

This is what I'm doing: Render the first image using a color of: glColor4f(1.0, 1.0, 1.0, 1.0); Render the second image, using a color of: glColor4f(1.0, 1.0, 1.0, calc);. calc is a number that goes ...
9
votes
7answers
186 views
+50

Iterating over non-incremental Enum

Before you ask, I've looked and looked for this on SO, and cannot find a solid answer. I need to be able to dynamically iterate over an enum that has non-incremental values, as an example: typedef ...
4
votes
0answers
94 views
+200

Saving a stream while playing it using LibVLC

Using LibVLC, I'm trying to save a stream while playing it. This is the python code: import os import sys import vlc if __name__ == '__main__': filepath = <either-some-url-or-local-path> ...