0
votes
3answers
47 views
C++ collection of abstract base classes
hello
how can I create STL collection of classes which implement abstract base class using the base class as collection value, without using pointers?
is there something in Boost …
6
votes
4answers
122 views
How to design a C++ API for binary compatible extensibility
I am designing an API for a C++ library which will be distributed in a dll / shared object. The library contains polymorhic classes with virtual functions. I am concerned that if I …
1
vote
2answers
32 views
Working with multiple branches in ASP .NET
I've seen several other posts similar to this (namely http://stackoverflow.com/questions/5237/solutions-for-working-with-multiple-branches-in-asp-net) but there are several issues …
0
votes
2answers
30 views
Any free or open source virtual in-memory drive?
Any free or open source virtual in-memory drive? I'm developing an plug-in for a host program and I need to comminute with it with temporary files in the disk, if the temporary fil …
0
votes
4answers
85 views
c++ virtual class, subclass and selfreference…
consider this class:
class baseController {
/* Action handler array*/
std::unordered_map<unsigned int, baseController*> actionControllers;
protected:
/**
* …
0
votes
6answers
119 views
Destructor of a concrete class
Guideline #4 link text, states:
A base class destructor should be
either public and virtual, or
protected and nonvirtual.
Probably I'm missing something, but what if I ju …
1
vote
5answers
52 views
xcode compiler see a class as abstract but it’s not!
Hi,
I'm working on a C++ command tool project that depends on a third party architecture called ACE (adaptive communication environment). I'm new to Xcode and this is what I've do …
3
votes
4answers
169 views
C++ Virtual function implementation?
If I have in C++:
class A {
private: virtual int myfunction(void) {return 1;}
}
class B: public A {
private: virtual int myfunction(void) {return 2;}
}
Then if I remove …
2
votes
5answers
187 views
How would I go about writing a Virtual Machine
I'm interested in programming a virtual machine, nothing as fancy as virtualbox or vmware, but something that can emulate a simple architecture, be it cisc or risc, say the Zilog, …
0
votes
0answers
55 views
apache2, vhosts and servername directive [closed]
I'm running an apache development environment on my ubuntu desktop machine.
When I start apache, I get the error
"apache2: Could not reliably determine the server's fully qualifie …
0
votes
2answers
35 views
Access virtual folder under My Computer
When I connect my digital camera, it creates a folder under My Computer named Canon PowerShot SD1100 IS. Using the File Explorer, I can browse this folder and its subfolders to acc …
3
votes
13answers
337 views
C++ virtual function table memory cost
Hi all,
Consider:
class A
{
public:
virtual void update() = 0;
}
class B : public A
{
public:
void update() { /* stuff goes in here... */ }
private: …
2
votes
1answer
102 views
How do I build a virtual USB simulator?
We are looking for a virtual USB link simulator; this program or service should
link a virtual COM port to an application which accepts only USB as data link.
The virtual COM por …
0
votes
1answer
42 views
Magic Packets and Virtual Networks
Hi All,
I have 2 virtual networks, say 10.116.10.xxx and 10.116.11.xxx. I have the following code to send a magic packet:
using System;
using System.Net;
using System.Net.Sockets …
2
votes
4answers
93 views
Calculating % memory used on Linux
Linux noob question:
If I have 500MB of RAM, and 500MB of swap space, can the OS and processes then use 1GB of memory?
In other words, is the total amount of memory available t …
