An extensible or simulated artifact
0
votes
4answers
46 views
Virtual overridden function isn't getting called
I'm trying a bit with polymorphism with the following code snippet:
#include <iostream>
#include <vector>
using namespace std;
struct Foo {
virtual void f() {
cout << ...
3
votes
1answer
72 views
Inheritance and inline?
I have been doing a lot of reading recently and whilst covering inheritance (and virtual functions) I keep stumbling across the "inline" keyword. Now I know what inline is in the normal sense- ...
0
votes
2answers
71 views
What is the difference between parallel and virtual
As the title says I was under the impression that using something like Virtualbox or VMware was actually parallel but I'm told they are different. When I searched to learn more about this I am lost ...
2
votes
4answers
170 views
Why doesn't polymorphism work without pointers/references?
I did find some questions already on SO with similar title- but when I read the answers they were focussing on different parts of the question which were really specific (e.g. STL/containers).
Could ...
2
votes
1answer
85 views
Virtual assignment operator overloading- how the correct overloaded function is chosen?
The following code (from C++ FAQs 24.11) is implementing virtual assignment operator overloading and overriding:
#include <iostream>
using namespace std;
class B{
public:
virtual ~B() ...
0
votes
0answers
46 views
Install MySQL-python under a virtual enviorment architecture gcc error
i cannot install MySQL-python under a virtual enviorment using "pip install MySQL-python", here is the output log (notice the m32 and -march=i686 flags, however i have a 64bit enviorment.):
*"...
...
0
votes
0answers
49 views
pdf printer driver
We have several printers installed in our company. I would like to write a virtual printer (to be installed on each PC) which will take all print jobs and:
Create a PDF file (maybe text file as ...
2
votes
1answer
119 views
C++ polymorphism: Why is static binding impossible even when the type is obvious
I am learning about virtual functions and virtual tables in C++. But, I could not understand why there is a need for dynamic binding. Doesn't the compiler have all the information to figure out if the ...
0
votes
5answers
446 views
How to perform a Virtual Mouse click C# without using a mouse
I'd like to perform a click in a windows application, without using the real mouse (so I can minimize it). Like a bot.
How would I do this?
1
vote
2answers
73 views
Destructor ordering in inheritance hierarchy
If I have the following hierarchy:
Class F contains member objects of type (Class E and Class D, declared in that order)
Class F inherits the concrete class Class C
Class C inherits the ...
0
votes
2answers
103 views
Virtual method called from derived instead of base
Can someone explain to me why is the overridden method being called when I cast the class into the base one:
class Base
{
public virtual void VirtualMethod()
{
...
0
votes
1answer
52 views
Multiple virtual inheritance with common base class
I've going through some code recently to learn more about programming in C++ and I'm facing something somehow a bit odd.
I got a class declaration :
class myClass : public QObject, public virtual ...
0
votes
0answers
36 views
accessing windows localhost from a mac
I have parallels installed on my mac and I have installed windows 8 as a virtual machine. I am able to run an application running on the mac localhost in windows 8 but now I would like to run a .net ...
0
votes
1answer
40 views
Hosting Multiple websites on apache2?
I'm using Ubuntu Server with Apache2 to host my websites.
I have two domains, www.test.com and www.domain.com (not real names)
Inside of my sites-available I have the default that is pointed to my ...
2
votes
2answers
63 views
Assigning a template value to a class template via a pointer to its non-template parent class
I'm trying to make a C++ Template class that can store a template value. However, I need to create pointers to this class before the type of the template value is known. To do this, I created an ...
0
votes
0answers
30 views
automating backup of VMs between 2 servers if connection lost
Okay, here's my setup. 2 Ubuntu servers running Xen each with 2 VMs on it. Server 1 has VM 1 and 2 and server 2 has VM 3 and 4. I have each server backing up the other's VMs so that if something ...
0
votes
4answers
72 views
classes in c++ and virtual funct
I want to create 2 kind of classes.
the classes will have similar function "set", but the set funct will get "int" in class B and double in class C. (A is abstract calss but it does not require).
What ...
2
votes
3answers
116 views
How can I decide at runtime which derived class to use as a private class member in C++?
This following question is a bit hard for me to formulate, but please bear with me, and let me know if I can help in clearing anything up.
I am writing a general-purpose simulation for 3D shapes. I ...
0
votes
1answer
113 views
Using Virtual functions in C++
I have a small problem using virtual functions in C++
I have a class B which extends class A.
Class A{
virtual function 1 // does nothing
virtual function 2 // does nothing
}
class B : public ...
0
votes
1answer
74 views
CUDA with invoking virtual methods in kernel on objects that was created on Host
Description of my problem is in this code below.
class A
{
public :
__device__ __host__ virtual void foo() = 0;
__device__ __host__ void foo2()
{
//something ...
0
votes
0answers
73 views
mod_rewrite virtual subdomain and query string
What I have setup are virtual sub domains - for example, admin.mydomain.com points to mydomain.com/admin. I have also set it up in the past so that my query strings look like this
...
0
votes
0answers
69 views
virtual memory in linux
I am debugging one issue where a same program behaves differently on different Linux boxes (all 2.6 kernels). Basically on some linux box, mmap() of 16MB always succeeds, but on other linux box the ...
4
votes
3answers
136 views
Alternative to calling a virtual method in C#
I am using NHibernate for my C# pojects and therefore I have several model classes.
Lets assume the following example:
using System;
namespace TestProject.Model
{
public class Room
{
...
0
votes
0answers
61 views
How to create virtual microphone with c++
I want to create a virtual microphone, the virtual microphone can retrieve data from a real microphone, and allows applications can use this virtual microphone.
0
votes
2answers
81 views
Virtual destructors calling both derived and base destructors
I am having trouble understanding virtual functions. When I overload a virtual function, is the new derived function called only? Or both derived and base functions? Because I noticed that when ...
3
votes
1answer
104 views
Overriding a virtual function with optional arguments
Why is this printing 23 as output; my expectation was 33. Could somebody please shed some light on this.
struct A {
virtual void f() {cout << "1";}
};
/* Private inheritance */
struct B : ...
0
votes
0answers
13 views
java method to force shutdown a VM instance
We are trying to force shutdown a virtual machine on a cloud using VMware APIs in Java programming.
to To poweroff, on , reset a machine we have methods like vm.powerOffVM_Task() , vm, ...
0
votes
0answers
31 views
Can I swap between physical pages at a given address
I've read through the msdn documentation on physical pages and AWE (http://msdn.microsoft.com/en-us/library/windows/desktop/aa366527(v=vs.85).aspx) however I still don't understand how it works. If I ...
4
votes
2answers
194 views
Java method calls faster than virtual method calls in C++?
Just stumbled upon this in wikipedia:
Java can access derived instance methods faster than C++ can access
derived virtual methods due to C++'s extra Virtual-Table look-up.
However, non-virtual ...
1
vote
1answer
66 views
What is meant by dividing a process into pages in the concrete sense? [closed]
The way I understand the notion of a 'process' is that it is a running instance of an executable program.The exe is in the secondary memory and the running instance of it is in the RAM. If this ...
1
vote
2answers
108 views
Is there a way to get the C++ virtual member function address
I searched this article:
C++ : Getting function virtual 'address' with member function pointer
In order to test if the virtual member function is usually at the beginning address of the ...
0
votes
2answers
77 views
illegal start of expression error in virtual keyboard code in java
I am getting an error illegal start of expression in the code below, at line -> public class hindilang , I have seen other questions and answers on this site, but i don't know where i am going wrong ...
0
votes
0answers
56 views
Virtual methods, interfaces, “sealed by default” and facilitating mocking [closed]
So, I seen a lot of different opinions in a lot of places about these topics. So, let me list my specific scenario
I have an API which should be easily inherited and extended
I don't foresee ...
0
votes
1answer
91 views
How do I upload a VM to Azure
I see a lot of confusion about how to connect to Azure and upload a VM. It involves creating a management certificate with makecert and uploading with csupload, and there are a lot of flags to get ...
0
votes
1answer
92 views
Mongoose complex (async) virtuals
I have two mongoose schemas as follow:
var playerSchema = new mongoose.Schema({
name: String,
team_id: mongoose.Schema.Types.ObjectId
});
Players = mongoose.model('Players', playerSchema);
...
1
vote
1answer
245 views
Out of virtual memory address space (Borland C++ Builder 6 program)
I have problem with some application written under C++ Builder 6. After some time of running (week, month) the application crashes and closes without any error message. In my application log shortly ...
1
vote
1answer
35 views
Javascript virtual web page creation
Within my javascript, I am getting BLOB and mimetype data from a SOAP web service. This BLOB data represents a particular file's contents. The file could be any mime type (image/png, text/html, ...
0
votes
0answers
108 views
ESXi - Forward port to virtual machine?
For example, i have a ESXi Host with a router vm and a intern network.
Could i use the host ip for other things except ESXi?
I mean: On a virtual machine is a webserver (port 80).
Could i route the ...
0
votes
0answers
33 views
How to create sub domain using virtualization in CakePHP
How to create sub domain using virtualization in CakePHP using a dedicated router?
Send to address
sabz.domain.com/blog/posts/view/10
to
domain.com/blog/posts/view/10/sub:sabz
1
vote
4answers
64 views
Virtual function call
Here is my hierarchic of classes.
I have declare following abstract interface class, which have just one function:
class IAuthenticator
{
public:
virtual void CreateJson() = 0;
};
After I have ...
0
votes
1answer
80 views
Does a member of a C++ base class really needs to be virtual to be overridden by a derived class?
class A {
public:
virtual int test()=0;
};
class B : public A {
public:
int test(){return 10;}
};
B *b = new B();
b->test(); // would return 10;
whereas:
class A {
...
2
votes
3answers
91 views
Calling pure virtual function in constructor gives an error
class a //my base class
{
public:
a()
{
foo();
}
virtual void foo() = 0;
};
class b : public a
{
public:
void foo()
{
}
};
int main()
{
b obj; //ERROR: ...
0
votes
0answers
20 views
Universal Voice Game System
I am planning to develop a Universal Voice Game System (VGS) inspired by Tribes: Ascend. Tribes: Ascend Voice Game System
My first idea is to playback several small audio files as a microphone input ...
0
votes
3answers
64 views
How to correctly inherit from a base class whose destructor is not virtual?
I want to inherit from class A, but A's destructor is not virtual and I cannot modify A's definition. How to avoid the following case?
struct A
{
A()
: a(new char[8])
{}
~A()
...
0
votes
0answers
150 views
Visual Studio 2012- Can't find “Virtual Path” property for site
I click on the site, and the property window appears in the lower right corner. Properties include:
Developer Web Server
-Anonymous Authentication
-Managed Pipeline Mode
-SSL Enabled
-SSL URL (can't ...
0
votes
2answers
27 views
Residing a member of parent class type inside another class
#include <iostream>
class BarParent
{
virtual void fuz()
{
std::cout << "BarParent" << std::endl;
}
};
class BarChild : public BarParent
{
virtual void ...
1
vote
0answers
49 views
How to configure? Jetty + subdomain + apache
Friends, I'm trying to configure the following environment:
I have a VPS server, with debian, apache2, jetty 9 and one, just one, webapp.
The url to access my webapp is something like: ...
3
votes
2answers
292 views
Interpreters vs Compilers vs Virtual Machines
I have a question about Interpreters,Compilers and VM
Now I know the Differences between Interpreters and Compilers but what is different about the VIRTUAL MACHINES from the previous 2? What are the ...
1
vote
1answer
231 views
C++ virtual function + STL container with base class pointers
I have a base class called Base which defines a virtual function. The class Derived now inherits from it and implements/overwrites that virtual function. The following code works just fine:
Base* pB ...
0
votes
1answer
156 views
Merge 2 sound cards into one virtual driver
currently i am using Macbook Pro and Macosx 10.8.2
3 days ago , i bought a DJ controller soon after i realized that that controller hasnt got any buildin sound card.
i connect that device to macbook ...
