An extensible or simulated artifact

learn more… | top users | synonyms

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
155 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
50 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
308 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
236 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
159 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 ...
1
vote
1answer
116 views

make wcf dataservice generate entities with virtual properties

We reference a wcf data service which we cannot modify. It is added to our project as a service reference. When this is done, the entity classes get generated. We would like for the generated ...
0
votes
1answer
40 views

“Meta-artifact” on Gradle

I have a project that publishes two artifacts to a Maven repo with Gradle. I would like to publish a third "empty" artifact that could serve as a meta/virtual package for the other two, so that any ...
1
vote
0answers
87 views

Detecting virtual machine in Java

I've been searching for a good way to detect whether the app is running in a virtual machine with a java application, so it can run on any virtualized OS. But all the links I've found are with ...
0
votes
1answer
476 views

Logical Address to Physical Address in Page Table

I really dont know where to start in the following question and how scoured the internet for hints. If anyone could point me in the right direction or let me know a way of tackling this question it ...
0
votes
0answers
73 views

In WPF my virtual keyboard showing character @ as inverted

In WPF my virtual keyboard showing character @ as inverted.Any help will be appreciated <Button Canvas.Left="500" Canvas.Top="139" Width="43" Height="43" ...
2
votes
1answer
135 views

Is it possible to use the template method pattern in the constructor? [duplicate]

Possible Duplicate: Calling virtual functions inside constructors I have a class Shape and its subclass Sphere : //Shape : class Shape { public: Shape(const string& ...
1
vote
2answers
84 views

Itersection beetween different shapes

I am trying to make a library of shapes. There is the following class Shape, with this declaration: #include "pos.h" #ifndef SHAPE_H #define SHAPE_H class Shape{ protected: Pos pos; public: ...
-1
votes
1answer
96 views

Virtual box error [closed]

I install my symfony devel in virtual box and it gives me this error: The virtual machine execution may run into an error condition as described below. We suggest that you take an appropriate action ...
3
votes
5answers
1k views

Increasing the Android SDK emulator speed

How do I increase the speed of the virtual device emulator in the Eclipse SDK for Android app development? I have been searching all over the internet to find out how to speed this thing up, but I ...
0
votes
1answer
52 views

Apache Virtual Host Site Inaccessible

I'm setting up a dedicated server with multiple virtual hosts. The DNS is registered correctly... $ ping mydomain.com $ ping 8.8.8.8 (for example) Both return the IP address as expected and it's ...
1
vote
3answers
44 views

Virtual Machine or Host?

Is there a way to find out if the (linux) system that I'm logging into is a host or a VM? Any symptoms that I can look at via the shell or any other utility (of a VM)?
2
votes
3answers
93 views

Why derived class destructor called even though base class destructor is not virtual if object is created as reference

#include <iostream> class Database { public: Database() { std::clog << "Database object created " <<std::endl ; } ~Database() { std::clog << ...
0
votes
0answers
33 views

How to configure a VLAN of VMs to allow traffice from outside?

My question is not quite common. I am building a VLAN of 4 VMs (kvm, guest OS Debian 6.0) using bridge. br0 Link encap:Ethernet HWaddr 4e:9a:52:45:63:28 inet addr:10.0.0.1 ...
0
votes
1answer
73 views

Way to clean up child process address space even its still alive

In my process i have created 10 threads and will use those threads till my application is alive. Each thread will perform some file input and output operation every time. So the problem is every time ...
48
votes
5answers
2k views

Should I mark all methods virtual?

In Java you can mark method as final to make it impossible to override. In C# you have to mark method as virtual to make it possible to override. Does it mean that in C# you should mark all methods ...
1
vote
3answers
207 views

Calling pure virtual function from thread in child class throws exception

I have a child class that starts a method of the base class as a thread. The child class has also implemented a pure virtual method from the base class. The thread then needs to call the child's ...
3
votes
3answers
111 views

Function priority? Need help understanding code. (Virtual Inheritance) [duplicate]

Possible Duplicate: Why this code doesnt work? (c++ OOP) public inherits I have some code. I just can't figure out why the compiler choose one function instead of another. The code: ...
0
votes
1answer
48 views

Continus Process virtual memory increase

my application will try to copy file data from one file to another file,so i start 1000 task which will perform this operation then the process virtual memory will increase. My qustion is after the ...
0
votes
1answer
91 views

Windows Virtual Keyboard

I have a JSP page with a button inside. When i click the button, windows on-screen keyboard will pop up. How do I do it? I've done research and I've found "Runtime.getRuntime().exec("osk");" but ...
1
vote
2answers
86 views

Abstract class inheriting another abstract class with the same function name

class subscriber { public: virtual void update() = 0; } class entity : public subsriber { public: virtual void update() = 0; } class myObject : public entity { public: ...
2
votes
1answer
91 views

How are system calls handled in a virtual machine?

I was wondering how a system call is treated when used in a virtual machine. Does it send some kind of signal through the virtualizing kernel and then to the "real" kernel (of the physical machine)? ...
0
votes
3answers
112 views

C++ shared_ptr<Base> pointer acces violation

I'm using shared_ptr<Base> for some sort of tree list with derived classes. But I'm getting a pointer acces violation when my tree gets destructed. My code looks something like this, besides, ...
2
votes
2answers
68 views

Calling a base class method in a template virtual class hierarchy

Let's say I have the following class hierarchy: template< class T > class TestBase { public: virtual T const & do_foo() = 0; }; template< class T > class TestDerived : public ...
0
votes
0answers
467 views

Hide virtual buttons Android 4

Please help me to hide virtual buttons (andriod 4) in my application to have full screan when run the application. My device is (HTC One x) but i want my application run on all divices that have ...
0
votes
1answer
158 views

Passing pointer to derived class, to function that expects pointer to base class?

OK. I'm not very good at polymorphism in C++, but I've a problem now. Imagine these classes: class Parent { public: Parent(); virtual ~Parent(); }; class Child : public Parent { public: ...
2
votes
4answers
84 views

Safely removing C++ hidden virtual warning

I'm getting a compilation warning from Sun C++ 5.10 compiler about a hidden virtual method in some existing code that I'm changing. For whatever reason, the author has not implemented an override of ...
0
votes
0answers
118 views

Virtual Router vb.net

there is a way to create virtual router in Windows Vista and later using the following commands. netsh wlan set hostednetwork mode=allow ssid=NameOfTheNetwork key=eightdigitkey netsh wlan ...
0
votes
1answer
64 views

boost signals2 with virtual classes

On a project I've been working on I've made use of boost's signals2. This worked fine untill I started making use of virtual classes. Now slots don't get called anymore. The following is a stripped ...
0
votes
0answers
63 views

create android emulator with sdk 4.1.1 even though sdk 4.1.2 is installed already [duplicate]

I need to run an android virtual device with Android v4.1.1! But since I already updated the SDK some time ago, there only is 4.1.2 available (API level 16). Is there a way to manually get back to ...
0
votes
1answer
359 views

custom keyboard with inputAccessoryView iphone xcode

I have seen many questions about iphone custom keyboard. But, I cannot find a good tutorial and the one that can be customized easily. I have found out this which is easy to customise and also ...
-1
votes
1answer
124 views

Virtual machine Hosting [closed]

I'm trying to to find Hosting Providers that will host a Mac OSX virtual machine in the cloud ? This might be more reliable than hosting it locally. Do you know any providers? Thanks!
0
votes
0answers
47 views

Smartfoxserver Virtual World Spawn Point

I need help with anybody who has experience in Actionscript 2.0 virtual world programming.I use SmartFoxServer and have been using the AvatarChat.fla that is included with the Pro version of the ...
1
vote
5answers
359 views

C# virtual methods override the return type & method arguments

I want to init virtual method with exact name in abstract class. And in class, which is the inheritor override method such, that I can override: the return type of the base method arguments of the ...
2
votes
3answers
141 views

Will “delete this” in a base class pointer delete the derived class object when you have a virtual destructor?

I have a class hierarchy that's three levels deep, like this: class A { public: virtual ~A() {} } class B : public A { public: virtual ~B() {} void foo(E *e) { ...
3
votes
2answers
117 views

How is this initialization list implemented using a virtual class?

#include<iostream.h> class A{ public: int i; A(int j=3):i(j){} }; class B:virtual public A{ public: B(int j=2):A(j){} }; class C:virtual ...
0
votes
4answers
80 views

inheriting constructors of class virtually derived.

I came across this question which asks its output. #include<iostream> using namespace std; class A{ public: int i; A(int j=3):i(j){} }; class B:virtual public A{ ...
-2
votes
1answer
134 views

virtual keyword in inheritance [duplicate]

Possible Duplicate: In C++, what is a virtual base class? In this code when an object of DR is created, the string "Hello World" should be printed 4 times, instead it is printed just 3 ...
0
votes
1answer
16 views

overriding virtual event

I've got the following code public delegate void NotificacaoScanner(NotifScanner e); // interface public interface IScanner { event NotificacaoScanner onFinalLeitura; } // abstract class ...
0
votes
2answers
56 views

Virtual, how to use it?

class a { public: a(int); virtual ~a(); virtual void print(); int getNumber() private: int number; }; class b : public a { public: ...
3
votes
3answers
100 views

“R6025 - pure virtual call” in Display List, OpenGL, C++

I'm creating a Display list for all GUI objects I have, like this: glNewList(displayList, GL_COMPILE); obj->draw(); glEndList(); But when I try to compile it, I'm getting an error: R6025 - ...
0
votes
0answers
120 views

KVM / Qemu DMA-Handling [closed]

What is the difference between the scenarios DMA with an emulated device DMA with an paravirtual device (Are the virtio drivers capable of DMA?) DMA with an passthrough device in respect to ...
2
votes
3answers
83 views

std::list Memory Leak with interfaces

I'm having trouble with std::list and memory leaks: class AbstractObject { public: virtual void Say() = 0; } class RealObject : public AbstractObject { public: virtual void ...
0
votes
0answers
33 views

Remote Access to Virtual Desktops ; Remote Access

I don“t know if this is the best place to ask this question. But I need to find a solution to a problem I have. I need to provide access to personal virtual desktops to a few users. And I need to ...

1 3 4 5 6 7 33