An extensible or simulated artifact
2
votes
1answer
101 views
delphi overload, override, virtual method
have simple object hierarchy like below
TLiveThing=class
protected
FTest:string;
constructor Create(whereLive:string);overload;virtual;
constructor Create(haveBone:Boolean);overload;virtual;
end;
...
3
votes
1answer
137 views
Is there any sense in marking a base class function as both virtual and final?
In various explanations of C++11's final keyword, I'm seeing examples like this.
class base
{
public:
virtual void f() final;
};
class derived : public base
{
public:
virtual void f(); // ...
0
votes
0answers
47 views
Can you call a protected method inside a overwrite private virtual?
I having a link error (unresolved external symbol) for a protected method (not virtual) being called in a virtual private method that Im overwriting. The link error is solved by changing protected to ...
-2
votes
0answers
87 views
Delphi custom single-file Virtual File System [closed]
How can I create a Windows NT (just Windows 7+ is fine) disk driver in Delphi for own/custom virtual file system?
I need something simple (without all the actual data structures and such since I want ...
2
votes
5answers
55 views
C++ vptr is duplicated in every object
In c++, we have VPTR in every object, but only one VTABLE per class. Why VPTR is in every object? isnt it duplication?
0
votes
1answer
6 views
Apache2: userdir module
Recently, I installed Apache2 on mu Ubuntu machine (http://www.xxx.com) and I enabled userdir module. I wanted to know what userdir module actually does behind the scene. As I can access ...
0
votes
0answers
17 views
ZwAllocateVirtualMemory equivalent in linux
anybody know how the equivalent for ZwAllocateVirtualMemory in linux ? I want a linux device driver to allocate virtual address space in a process.
0
votes
3answers
52 views
about inheritance in C++, can a derived class get implemetation from base class without explicitly defining it
The following has the error
error LNK2001: unresolved external symbol "public: virtual void __thiscall C::Foo(void)" (?Foo@C@@UAEXXZ)
so basically C::Test() cannot inherit implementation of ...
0
votes
0answers
6 views
How to multi inherit abstract classes with a controlled process?
Not sure if my title is fitting to the nature of my question, but here is what I am trying to do...
Trying to build a custom TestCase object class for a custom UI testing framework and I need to ...
-2
votes
1answer
38 views
Java Beginner Help Virtual Methods [closed]
I am a student in an OOP class, this is the first time I have ever actually worked with coding in Java and my head is spinning a bit.
My project is incomplete but only because I cannot seem to find ...
0
votes
0answers
10 views
Reactive recovery using Virtual Machines (VirtualBox) [closed]
I'm building a system based on virtual machines. I'm using snort as NIDS running and operate on virtualbox vnets (internal networks) to detect anomalies.
The core of the system is already working, ...
1
vote
5answers
50 views
Calling a virtual function on a reference
In the following code, why does the last call of eat() on the reference c return "An animal b is eating." ? From my understanding, c is a reference to instance b of the derived class Dog and eat() is ...
-1
votes
0answers
31 views
What does Reimplemented public functions & virtual keyword mean in Qt documentation?
I'm reading (and learning at the same time) Qt documentation, I globally understand all but I don't understand the part when they said Reimplemented Public Functions and then there are some virtual ...
5
votes
1answer
60 views
Polymorphism & default values: can co-exist?
I have a base class with a number of inherited derived classes. Something like this:
class A {
public:
virtual void f(string foo = "bar") {
cout << foo << endl;
}
};
...
0
votes
0answers
34 views
Not able to call exported virtual function
I have a MyApi.dll with exported class Base with a pure virtual function.Also I have
a derived class having implementation of the virtual function in the same dll.
Factory function returns a derived ...
-1
votes
0answers
29 views
Azure virtual machine instance hangs in starting state [closed]
Today one of my virtual machine instances was in a stopped state at 11am this morning, restarting it just resulted in the same issue. I then deleted the vm and the disk - just not the vhd from the ...
0
votes
2answers
55 views
Abstract/Virtual Functions in java
I've heard that all Java functions are implicitly virtual, but I'm still not sure if this will run how I want.
Suppose I have a class A, with child B.
both A and B have functions called foo(), so B's ...
0
votes
0answers
16 views
Publishing webservice to Godaddy
I have this web service I want to publish on Godaddy. I have already a domain and a web hosting on windows. I created virtual directory in IIS and tested it by browsing to the URL of the directory. ...
-1
votes
2answers
23 views
Is there a way to add Virtual Network Adapters to a Physical Machine? [closed]
so I noticed how in Hyper-V, I can keep adding network adapters. This is nice because I can have many IPs on the VM serving many HTTPS SSL for various different sites. However, it takes a performance ...
2
votes
2answers
61 views
Turning a non-pure virtual function into pure in a subclass
So, I have this polymorphic hierarchy:
ClassA
Is not abstract, no pure virtual functions, but a few virtual functions
ClassB:public ClassA
Defines an extended interface for a certain type of ...
0
votes
0answers
6 views
Relative path does not end up same in VS server and IIS
I have a problem here:
First the setup:
In VS2010 development server, I entered into the web site project settings->Web->Virtual Path as "MyVirtualPath"
In IIS, the virtual path is also ...
-1
votes
0answers
27 views
Activating a virtual environment on Linux [closed]
On Windows I can simply activate my virtual environment as such: activate and it'll switch my environment automatically to my virtual environment. However on Linux, I have tried both . activate and ...
0
votes
1answer
37 views
Rails - How can I sum all the fields and use the sum as a validation before entering values in database?
I have a form containing multiple fields that have integer inputs. I have basic validation on the fields like presence, inclusion, and numericality. The part that I am stuck at however is checking ...
0
votes
1answer
23 views
Worpress virtual page of a plugin for front end user
Hi,
I have a wordpress plugin and its have a view page for fornt end user.Now this view page link is like:
localhost/wordpress/wp-content/plugins/my_plug/plug_page.php
Now i want to create a ...
0
votes
2answers
38 views
Using VirtualBox to run windows from another partition from ubuntu [closed]
My PC has two partitions, one with Windows 7, the other with Ubuntu. I would like to be able to run the Windows 7 operating system while inside Ubuntu. Is this possible? I have been exploring ...
-1
votes
0answers
10 views
Linux IPs using on Windows through IP Tunnel [closed]
I have a linux machine with 10 public ips assigned to it. I want to make them use through windows machine. Basically I like to setup a virtual network, and assign some internal IPs to windows machine ...
-1
votes
0answers
23 views
Virtual Network Point to Site start VPN with API [closed]
How can I programmatically start up the VPN connection for a Virtual Network Point to Site connection?
How can I step over Connection Manager Dialog and directly connect to the VPN. The connection ...
0
votes
0answers
21 views
Apache virtual host to tomcat server
I would like to set apache to root to my tomcat server in the same machine.Apache is listening to port 80 and tomcat to 9090. The dns name of my service is example.com.gr the machine ip is something ...
0
votes
0answers
20 views
Android virtual machine network access failure
I make the simple DEMO to query mobile phones belonging to. When I run in the computer’s virtual machine it said access fail. I pack the program and copy to another computer. it can run well in this ...
0
votes
0answers
12 views
Which blocks of a file system(FAT32) are allocated for a specific file?
I am trying to implement a tool that finds outs which blocks of the disk were allocated for a file. Disk file system is FAT32 and is size about 100MB. I researched about open system call but I cannot ...
1
vote
1answer
47 views
Confused about virtual overloaded functions
I am confused about compiler errors regarding the code below:
class Base {
public:
virtual ~Base () { }
virtual void func () { }
virtual void func (int) { }
virtual void another () { }
...
2
votes
2answers
60 views
Does “delete” work properly with polymorphism?
BaseClass * p = new DerivedClass();
delete p;
I know the 2nd line will call the destructor of the base class if it doesn't have a virtual destructor and that of the derived class if it does but will ...
0
votes
4answers
73 views
How to display two images on the same line (CSS)
I'm currently skinning site for a virtual airline and I need help as to how to get
two images to show up on the same line instead of one breaking onto the next line.
It should be displayed as:
LOGO ...
0
votes
6answers
80 views
C# Override an abstract class' function with a different one with a “Class Type” return type
I am trying to create a class based on an abstract class and overwrite a function contained in the base class with another one that has a return type of "T" which is a type passed by the class.
e.g:
...
-4
votes
0answers
53 views
Virtual methods & classes
class MedicineRepository
{
public:
virtual void addMed(Medicine s) throw (RepositoryException) = 0;};
Module1
class MedRepo : public MedicineRepository{
public:
void addMed(Medicine s) throw ...
0
votes
1answer
70 views
dynamic_cast performing correctly only sometimes
the structure of the problem is such
Food is an abstract base class; Plant, and Animal directly inherit from that.
Herbivore, Carnivore, and Omnivore inherit from Animal,
while Fruits and Nuts and ...
0
votes
1answer
24 views
Virtual box error “Non existent network interface”
I got an Virtual box image of a Linux Operating System and when I am trying to open it I get the following error.
The only solution found online was to update the Virtual Box enthernet adapter and ...
0
votes
0answers
9 views
check if folder is a virtual directory in IIS
I'm using xscript/xml which is lacking in documentation. I need to do a check to see if a certain folder is a virtual directory in IIS?. If so, I delete it. I have the delete part done but cant do the ...
0
votes
1answer
43 views
Abstract class : invalid abstract return type for member function ‘virtual…’
In my program I have such class hierarchy:
#include <iostream>
#include <cmath>
#include <sstream>
using namespace std;
class aa;
class bb;
class root
{
public:
virtual ...
0
votes
2answers
79 views
error C2259: cannot instantiate abstract class; or “how exactly should i be using virtual functions here?”
this involves some pretty tricky inheritance, but bear with me here.
My question isn't so much a specific error, but just "how would i do this specifically?"
the idea is to have an abstract base ...
0
votes
4answers
91 views
returning a derived class object through a pointer of its abstract base class
I must write a program which in one of its function will return a derived class via an abstract base class, so when the class being returned to the main may access the derived class virtual methods.
...
-2
votes
0answers
26 views
How do I create a distributable virtual appliance?
I am writing a PHP/MySQL program. I would like to package it into a virtual appliance that can be installed on a computer. I've used the Virtual Appliance for Joomla and other Customer Management ...
0
votes
1answer
71 views
Azure service dies after a few days
I have Small size (x2) cloud service running and operating just fine for 4-6 days but then it becomes unresponsive and requires manual restart through Azure portal to get it back online.
Windows ...
-6
votes
4answers
75 views
C# Inheritance, adding new methods [closed]
Ok so I've been searching about for a while trying to find an anwer to this question but it is difficult to phrase so I am asking here.
I'm inheriting a class like
Class A (int a, int b, int c)
...
2
votes
5answers
80 views
Why is it called dynamic binding?
We use virtual to achieve dynamic binding in Cpp i.e. to decide at runtime which function has to be called based on the actual object created rather than the reference or the pointer variable.
class ...
0
votes
3answers
34 views
object inheritance virtual function run fail error
Shape *shape[100];//global scope
Square sqr;//global scope
void inputdata() {
int len,width;
cout << "enter length";
cin >> len;
cout << "enter width";
cin >> width;
Square ...
0
votes
5answers
59 views
Trouble with abstract classes in c++
main:
#include <iostream>
#include <string>
#include "serviceChargeChecking.h"
int main()
{
serviceChargeChecking newAccount("Crim", 111222, 50.00, 100, 1.00);
...
0
votes
1answer
49 views
Virtual Mirror kind of application in android
I want to develop a virtual mirror kind of application similar to this
.As per my exploration in internet , it is based on augmented reality. I have some knowledge in augmented reality using Qualcomm ...
0
votes
2answers
75 views
Trouble with understanding virtual and non-virtual function calls
I have some understanding issues with following code segment and the output. Can anybody provide an explanation mainly why test() works the way as seen in output. I am using MSCV 2008 C++ Compiler.
...
1
vote
2answers
70 views
How to store constant 2D array in C++ class with virtual access?
I have to put few megabytes of data in two-dimensional arrays in C++ code (embed it in DLL), diffrent datasets for each subclass. I defined virtual accessor methods to access constants to specified ...





