Questions about C++, a statically typed, free-form, multi-paradigm, compiled, general-purpose programming language.

learn more… | top users | synonyms

9
votes
2answers
820 views

Monitoring C++ applications

We're implementing a new centralized monitoring solution (Zenoss). Incorporating servers, networking, and Java programs is straightforward with SNMP and JMX. The question, however, is what are the ...
2
votes
1answer
70 views

Adding explicit interfaces to Legacy managed C++ code

I have a bit of a challenge and I am not sure how to approach this. We have a very very large project (that is about 5 years old). The code base is HUGE so a full refactor is out of the question. ...
0
votes
1answer
131 views

implementing asychronous udp socket in c

so far I've been trying a single server+single client udp chat application where both server and client should be able to communicate with each other freely(as in regular chat applications). for this ...
0
votes
1answer
1k views

Drawing Flowchart for function calculate a number in the Fibonacci Series

I'm trying make Flowchart for function calculate a number in the Fibonacci Series. But It looks like not right. I don't how draw the recursive function. Please help me how to fix it. My flowchart: ...
0
votes
1answer
99 views

How we call an RPC that not only calls external functions but also updates data structures?

I have a simple C++ RPC that lets you have remote class instances that support live members (data structures) update as well as method calls. For example I had a class declared like this (pseudocode): ...
-1
votes
1answer
262 views

How to move a car around an environment with hills in C++?

I don't have any code for this since I don't know how I am meant to do this. I have a car and I am able to move it around on a flat plane and I have that working correctly. However, I want it to also ...
2
votes
0answers
121 views

Using absolute paths for build dependencies

Currently we use Source Safe and start migration to Subversion. All external SDK(> 500 MB) hold in Source Safe now, and I look for way to move them from VSS to some repository. We have C++ (mostly), ...
1
vote
0answers
53 views

Let Cpython stream commands with IPC

I'm no expert in the Cpython internals, and with Cpython I mean the interpreter that is usually found inside applications that offer a python interpreter, the "classic" python interpreter; Now I was ...
1
vote
0answers
101 views

OOP + CORBA + ODBMS has anyone tried/know this model?

OOP + CORBA + ODBMS = the object model I know its rare almost impossible model but this is THE model, a pure object model. every element in the equation is object oriented, a perfect model for our OO ...
0
votes
0answers
8 views

Chrome's multiple process per each tabs

I am wondering what is the purpose of Chrome using multiple processes for each tabs? I asked this to C++ chat room and one responded it is a product of laziness. I personally believe this is an ...
0
votes
0answers
31 views

Design for migrating to Multitenant architecture

We are in a process of redesigning our product code in such a way so as to support multitenancy. Currently the implementation is such that one product deployment caters to only one customer. Thus ...
0
votes
0answers
110 views

What data structure is suitable for implementing dynamic huffman encoding and decoding on a piece of text?

Some pseudo code or resources will be appreciated.I was thinking if implementing it in form of a BST stored in an array. However,not all operations can be performed easily using this approach. I am ...
0
votes
0answers
168 views

How GUI toolkits are made for c++?

Like GTK and wxwidgets, im having a hard time wrapping my head around it, ive looked at the source code of wxwidgets and i see no windows api functions in sight, i would like to just create a custom ...
-1
votes
0answers
35 views

dynamic table creation in windows form using visual c++ 2010

How to create a table of nxn in a windows form, where n is specified at runtime in a seperate form just before the form including the table.(the second part i can do ,please just help me for the ...