An extensible or simulated artifact
-3
votes
1answer
48 views
Member duplication when using virtual method
When passing a pointer to an object whose parent has a virtual function to a method with a parent type, I get strange copying of parent members in the resulting object.
Child -> Parent -> Child
...
-1
votes
1answer
29 views
Books for virtualization - technical explanations needed
I want to learn virtualization basics inside out. All the books in top results of amazon are too superficial and are only meant for managers, ie people who only need to have a vague idea of what it is ...
0
votes
3answers
45 views
c++ pass any child object with parent type to method
I'm trying to pass a child object to a method, but do not know the object type ahead of time, other than that it will be inherited from a parent.
I can set the type as parent, and the compiler is ...
0
votes
0answers
14 views
What tools are available for managing Virtual Machines on the fly?
So, I am working on a project that needs access to a multitude of OS environments. These OSes are able to access the web and will access websites with various different browsers, including outdated ...
1
vote
2answers
52 views
override an abstract function with a virtual one?
Basically i'm asking how best to do this properly based on what I THINK I want.
I have a weapon class which is abstract because it contains methods like Fire() that are so general (lasers vs bullets) ...
8
votes
1answer
156 views
c++ why does virtual inheritance allow for the prevention of further inheritance?
Related: Does "virtual base class in the case of multilevel inheritance" have significance
I have a template class that can be inherited from in order to impart some select functionality. ...
0
votes
1answer
25 views
Linker Command Fail in Xcode with Pure Virtual Objects
I'm a n00b so correct me on anything.
I've been working on this for a couple days and have done research but can't seem to solve the issue. This is for a programming class that mainly uses Visual ...
0
votes
0answers
43 views
code regarding keyPress( ) method and keycode for virtual keyboard in java for special characters
I have to create a virtual keyboard in java to type frequently some special characters like:Ã Ð Ğ Ș Ģ Ŗ etc. As they are not present in our regular English keyboards, the virtual keyboard is must for ...
2
votes
1answer
37 views
Howto determine pure system filesystems?
I'm writing notifyfs (for linux only for now), which is:
a fsevent notifier, which should work with fuse and network filesystems, like fuse.sshfs, cifs and nfs.
a cache of entries gui clients can ...
0
votes
0answers
17 views
Recreating servers and shares on home PC for development
I think this is best here as opposed to super-user or on programmer, but feel free to migrate if appropriate...
I develop many small applications and macros which work with files and databases used ...
0
votes
0answers
11 views
more than two virtual xp?
can i make two or more windows xp virtual machine on Oracal virtual box ?
or if i get one windows xp then i can't generate another one ?
any idea? because some time when generate another one then ...
1
vote
1answer
65 views
Retun Genereric Type data from function
I have written the following code. Where the function func() print the header and data.
class ICell
{
public:
wstring header;
virtual void Fetch() = 0;
};
template <class ...
0
votes
4answers
121 views
C# Override virtual function without having to implement another class
I am trying to override a virtual function only for a single defined element (without having to create another class that implements it and then adding a function to override it..).
Example:
public ...
0
votes
0answers
42 views
TCP/IP forwarding in windows xp over virtual box running in ubuntu
I have an Ubuntu 12.04 server that is running virtual box 4.2.10
I have a virtual machine with windows XP that has a checkpoint VPN client.
In that windows XP i can access a lot of host that are in ...
0
votes
0answers
47 views
Problems with displaying the built-in keypad of android emulator
I'm a little bit freshman in Android development so the some reasons may be sound incorrect.
I have been faced with a problem that the virtual keyboard is not displayed when I run the emulator for ...
0
votes
1answer
57 views
a section registered as allowDefinition='MachineToApplication' beyond application level
After adding the assebly of System.Data.Entity to my web config I got this error:
It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This ...
-1
votes
1answer
87 views
How to get width and height virtual keyboard android
Can anybody help me?
I have a problem with get width and height virtual android
0
votes
0answers
128 views
Android Virtual Device - “Unfortunately, Mega Run has stopped.”
I installed the android emulator and installed an .apk with adb commands. I did this with several games: Mega Run, Mega Jump, Hyper Jump, Sonic Dash, all give the exact same error upon opening the ...
0
votes
0answers
36 views
How to convert a kvm guest vm image to a xen domainU vm?
I recently run into a problem of converting a kvm/qemu image to a xen domainU image.
The guest vm to be converted is a Debian 6 and the host OS is ubuntu 12.04.
I did some research online. The basic ...
2
votes
1answer
33 views
Simulate mouse events
I'm trying to simulate a mouse move using the following code: mouse_event(MOUSEEVENTF_MOVE,150 ,150, 0, 0);
It works fine, but the X and Y coordinates start from my current cursor position. Is there ...
0
votes
1answer
17 views
Race condition for USB devices with Multiple VMs
I have 4 USB devices ( same model ) connected to a Windows 7 host.
On my windows 7, I have two VMs ( VMware - Ubuntu ). I can connect two to each VM manually but If I restart any of the USB Devices ...
0
votes
1answer
12 views
Securing a directory with htaccess in a virtual hosting
I use the below .htaccess in a directory in my web root to restrict public access to its files:
.htaccess
<Limit GET POST>
order deny,allow
deny from all
allow from 127.0.0.1
</Limit>
...
1
vote
3answers
69 views
speeding up my mysql statement
I have the following table:
+---------------------+-------+
| t | price |
+---------------------+-------+
| 2013-04-22 13:23:51 | 9.42 |
+---------------------+-------+
Where t ...
0
votes
1answer
50 views
trouble with virtual methods in c++
guys! I am trying to do some tests using assertions and I wanted to create an InMemoryRepository but I receive an error. This is what I want to do:
void TestCaseMedicineInMemoryRepository::setUp(){
...
1
vote
1answer
88 views
Get Arduino binary from a COM port using Java
I want to get Arduino code onto a virtual serial port instead of the actual Arduino. The IDE sends binary code to the Arduino through the COM port which in this case will be a virtual COM port and no ...
0
votes
3answers
71 views
change from pure virtual to virtual in C++
I am having a base class that has 5 subclasses.
If in my base class I have this:
virtual CpuPort &getsecondDataPort()=0;
then this means that the method has to be implemented for all the ...
0
votes
2answers
66 views
When should a non-virtual method be redefined?
virtual methods are part of the C++ implementation of polymorphism. Other than avoiding the overhead associated with RTTI** and method lookups, is there a compelling reason to omit virtual?
Assuming ...
-5
votes
0answers
64 views
C++ overloaded method, method of parent class does not deliver correct result [closed]
struct AAA { int a;};
struct BBB : AAA{ int b;};
class A{
protected:
AAA* tls;
public:
virtual void set();
};
class B : public A{
protected:
BBB* tls;
public:
B(uint32_t _thread_num) ...
1
vote
3answers
82 views
Implementation of pure virtual function via inheritance
I have the following situation:
class Fork {
public:
virtual void use() = 0;
};
class Spoon {
public:
virtual void use() = 0;
};
class SilverSpoon : public Spoon {
...
0
votes
2answers
36 views
Virtual include not working
I have recently taken over a website written in Classic ASP which i had no previous experience with.
In the root of the site the default.asp has an include:
#include virtual="/inc/common.asp"
...
0
votes
0answers
27 views
apache virtual hosts - include files on top level?
I'm looking for a way to create virtual hosts with Xampp and give them additional include paths. I can't find anything about how to do such a thing ?
I have several websites with domains:
blah.com
...
0
votes
2answers
32 views
Virtual Memory in Visual C++
I have a query regarding Virtual Memory. First of all, I would like to mention that I am new to the field of programming. I have read up on Visual Memory.
Now I have a program which opens softwares ...
0
votes
1answer
89 views
Android/Eclipse: Launching app on virtual device/ real phone
Using eclipse, when I launch my app on the android virtual device it is really slow as "ANDROID_" is written but the app is never executed (Before it was written no DNS servers found so I added ...
0
votes
0answers
45 views
Is virtual memory a good indicator for process memory utilisation?
QA team sent us a memory consumption reprot for our shoftware showing that virtual memory used by the process piked to more than than 600 MB under heavy load. so I have ran the same tests and found ...
0
votes
1answer
31 views
Windows Virtual (fake) Device INF installation
I have been trying to install the MSVAD virtual audio sample drivers from the Windows DDK on Windows 7 64bits, without success.
I modified the sample INF to only support the "simple" driver. The ...
0
votes
0answers
45 views
virtual Sub-domain and URL rewriting with .htaccess
I want to use virtual Sub-domain on my domain with help of wildcard and .htaccess, the wildcard is set but what i have to write in .htaccess to rewrite the url for the following matter.
Enter => ...
1
vote
2answers
38 views
Which method will this inherited class call (virtual function)? c++
Say I have a base class
class Base
{
public:
void A() {do stuff};
void B() {A(); do stuff};
};
and a derived class
class Derived : public Base
{
public:
void A() {do things}
};
Derived derived1;
...
-5
votes
1answer
76 views
function overrides not calling
I'm having a problem with a program I'm writing, where my virtual functions don't seem to be behaving the way they should.
I have a class with a virtual function, and a derived class that overrides ...
0
votes
0answers
118 views
Ruby Rails multiple virtual attribute single database field
Writing a ROR application in which a single database field (longitude) is to be displayed as multiple screen fields (long_degrees, long_minutes, long_seconds, long_direction). I am currently ...
0
votes
1answer
117 views
How to install openCV on android emulator
I have to install openCV on a emulator. Somebody wrote that is should use a certain command
adn install <...>/OpenCV-2.4.3.2-android-sdk/apk/OpenCV_2.4.3.2_Manager_2.4_x86.apk
but did not say ...
0
votes
4answers
86 views
Classes & pure virtual
I have 4 classes.
Class A, Class B, Class C, Class D
Class C includes Class A and Class B and reference them:The Header File:
class C
{
private:
A &a;
B &b;
int x;
int y;
...
1
vote
3answers
111 views
best way of accessing method on derived class C++
I have some different objects all of type Zoo, which have a member variable Collection = vector<Animal>. I have one instance of zoo where all the elements are Animals, one where all the ...
0
votes
1answer
72 views
subdomain virtual host show wrong directory
I have problem with subdomain virtual host, it's pointing to my /var/www instead of /var/www/info.
I have domain, let's it be xyz.com, created dynhost to this domain, and subdomain cname to this ...
1
vote
0answers
58 views
Virtual function failure in iterating over a vector of base class objects [closed]
I have the following code that calls a print function that is declared as virtual for every inherited class of the base class; I am not sure how I'm going wrong ((*i)->printNode(); In my for loop ...
1
vote
1answer
69 views
Use Arduino programmer modes to upload code on virtual COM port
This question is related to Upload Arduino code on virtual serial port through Arduino IDE. The main problem is being able to upload code onto virtual COM port instead of using Arduino so I could take ...
2
votes
4answers
100 views
Segfault when calling virtual function of derived class
I've been having a problem with segfaults when I call virtual function of a derived class. However, these segfaults do not occur if I change the name of the function to be different from the name of ...
2
votes
1answer
116 views
c++ virtual inheritance initialization order
Hi,
As you can see the Construction order in the example is: – U1 U2 Y X V2 V1 V3 V4 B1 B2 D
I understand that : U1 U2 Y X were initialized because the V2 is the first direct virtual inheritance to ...
0
votes
2answers
70 views
Virtual Base Class in C++
I have a query regarding the virtual base class. In order to resolve the DDD /ambuiguity problem in multiple inheritance, virtual base class is introduced.
class A { public: void Foo() {} }
class B : ...
3
votes
4answers
52 views
overriding? upcasting?
The following code has the bug: last line should be
bp->g();
The question is, if I comment out that line, bp->f() actually calls the Derived version, So I assume the compiler treat bp as class ...
0
votes
1answer
34 views
Read partition and mount it from vritual image
Linux:
1. I have used FUSE to create virtual image which linked to other system with image_getattr, image_readdir, image_open and image_read api functions.
2. losetup to link to loop device (block ...





