Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
10answers
5k views

C# - Can publicly inherited methods be hidden (e.g. made private to derived class)

Suppose I have BaseClass with public methods A and B, and I create DerivedClass through inheritance. e.g. public DerivedClass : BaseClass {} Now I want to develop a method C in DerivedClass that ...
10
votes
3answers
4k views

C++ Vector Pointers to Objects

I'm using a vector of pointers to objects. These objects are derived from a base class, and are being dynamically allocated and stored. For example, I have something like: vector<Enemy*> ...
6
votes
7answers
2k views

Why is this not allowed in C++?

Here is my code - #include<iostream> using namespace std; class base { private: public: void sid() { cout<<"base"; } ...
6
votes
2answers
290 views

derived class as default argument g++

Please take a look at this code: template<class T> class A { class base { }; class derived : public A<T>::base { }; public: int f(typename A<T>::base& arg = typename ...
6
votes
4answers
1k views

Can Eclipse be configured to disable warnings for derived source files?

I am using ANTLR to generate Java source files. I can make Eclipse understand the generated files are derived, but it still gives me warnings about harmless things (e.g. unnecessary imports and so ...
5
votes
3answers
176 views

Is it legal to derive from a dead GPL 2 or GPL 3 project?

Is it legal to derive from a dead GPL 2 or GPL 3 project? For example assume a C# GPL 2/3 project is no longer in active development/maintenance. Can one re-implement it in F# (changing parallel ...
5
votes
7answers
550 views

C# How can I return my base class in a webservice

I have a class Car and a derived SportsCar: Car Something like this: public class Car { public int TopSpeed{ get; set; } } public class SportsCar : Car { public string GirlFriend { get; ...
5
votes
3answers
394 views

C#: Inheriting separate static members for derived classes

My problem in brief: class A { /* Other stuff in my class*/ protected static staticMember; } class B : A { /* Other stuff in my class*/ // Will have A.staticMember but I want ...
5
votes
3answers
919 views

m2eclipse marking 'target' directory as 'Derived'

I have a Maven Java project, imported using m2eclipse. The target/ directory is not marked as 'Derived' by m2eclipse. Problems: It is validated, so any validation error appear twice. My example ...
5
votes
4answers
1k views

Deriving COM interfaces in .NET

This is complicated, at least for me, so please bare with me. I'll also preface with I've spent a day searching, to no avail. Due to company constraints out of my control, I have the following ...
4
votes
2answers
171 views

Can I access a base classes protected members from a static function in a derived class?

I have a program where I need to make a base class which is shared between a dll and some application code. Then I have two different derived classes, one in the dll one in the main application. Each ...
4
votes
3answers
271 views

calling a template function of a derived class

I'm having a problem in C++ with calling a function of a derived class while having a pointer to the base class. EDIT: Some answers refereed my to CRTP but my point is that i need to have a pointer ...
4
votes
3answers
228 views

Weird compiler error and template inheritance

Could someone explain me why this code: class safe_bool_base { //13 protected: typedef void (safe_bool_base::*bool_type)() const; void this_type_does_not_support_comparisons() ...
4
votes
4answers
138 views

List with different types

I'm new at the C# thing.... (.net 3.5) I want a Dictionary to hold two different types of object, one of the type is generic. while iterating through the list, i will call methods like add and clone. ...
4
votes
3answers
259 views

Use of “Public” in a derived class declaration?

Given this base class: class Employee { char* name; int age; public: Employee(char* name); void print(); }; With regards to the "public", what's the difference between this: ...
4
votes
2answers
2k views

Fortran 90, Questions about Array & Derived Type

I have questions about Arrays and Derived Types. For my new project, I have to use an array instead of a scratch file to store information from users. To do this, I need to create derived types, too. ...
3
votes
3answers
65 views

Cross-DDL Extension of an Entityclass

What I want to archieve: Service assembly (project) that holds EntityClasses - pure Data. GUI assembly that extends those Entities for its own pourposes - Runtime information for GUI. What I ...
3
votes
2answers
100 views

forward declare derived class from template c++

I am having trouble working out some kinks in a design implementation. It goes something like this: I have a template base class which has a conversion method. // Foo.h class Bar; ...
3
votes
2answers
87 views

deriving from a template

I'm stuck on the following and could use some help: typedef unsigned short USHORT; template <typename DataType> class Primative { protected: DataType m_dtValue; public: Primative() : ...
3
votes
4answers
261 views

Base class vs Utility class

Which of the two should be preferred? There are some methods which are called by class A, B and C. Should those methods be encapsulated in a class D (base of A, B and C) ? OR Should those ...
3
votes
2answers
137 views

forward declaring with inheritance information

This compiles fine, although I wouldn't want to try running it just yet. However ... //class base; //class derived; //class derived : public base; class base {}; class derived : public base {}; ...
3
votes
6answers
593 views

simulate virtual constructor in c++

In my application I have to derive some classes from a base one, the problem is that I want to enforce the derived classed to have 3 particular constructor implementation. As c++ don't have virtual ...
3
votes
1answer
4k views

Entity Framework - Association From Derived Entities

I'm using the TPH (Table per Hierarchy) technique to map a set of entities. DB Schema: UserGroupLabelSpreads table having a "UserId", "GroupId" and "LabelId" nullable fields with some additional ...
3
votes
8answers
2k views

Creating software derivative works from open source

This question has always been around my head. Can someone create a new product based on an existing open source project? Say you want to create an "Apaxe webserver" that is basically Apache with ...
2
votes
1answer
45 views

placing functions to be used by any derived classes in the base class?

class tabBase { public: tabBase() { } virtual ~tabBase() { } virtual void write() {} virtual void read() {} virtual void start() {} virtual void stop() {} virtual void ...
2
votes
1answer
95 views

wpf trying to inherit theme / style and applying additional triggers

I'm trying to work with, and understand XAML hierarchy for styles... in simple, a simple Textbox... seen all over the place for how to set the "disabled" background color based on the "IsEnabled" ...
2
votes
2answers
41 views

Will _forceinline virtual function from base class be __forceinlined in derived class without explicitly stating it?

Suppose we have: class Base { __forceinline virtual int A() {return 1;} } class Derived: public Base { int A() { return 2; } } Function A in derived class is virtual without ...
2
votes
4answers
137 views

Derive from template argument and call its copy constructor

Please consider the following code: template<class basic_ios_type> class basic_ios_adaptor; template<template<typename, class> class basic_ios_type, typename char_type, class ...
2
votes
5answers
127 views

Derived class does not have access to inherited function?

I'm creating a very simple program that involves inheritance. I put a function into the "protected" area of the parent class, and now I don't have access from the child class. Here is my code: ...
2
votes
1answer
241 views

Automapper and class hierarchy

Given the following sources: public class SourceBase { public string TheString { get; set; } } public class SourceDerived : SourceBase { } and destinations: public class DestBase { public string ...
2
votes
4answers
258 views

Base class & derived class in a package

When I create the base and derived class in the same directory without specifying any package they compile fine, but adding them to a package leads to an error in derived class saying that it is not ...
2
votes
4answers
261 views

Template method over non-template method in derived class

class A { public: template<typename T> void func(size_t n, T values[]) { ... } }; class B : public A { public: void func(size_t n, uint32_t values[]) { ... } }; Why does function ...
2
votes
4answers
116 views

C++: Calling a derived method on an element of a base vector (example given)

Suppose that I have the following structure of classes. I want to be able to determine of what class type the element in my Animal vector is, so that I may perform subclass-specific methods on it. The ...
2
votes
2answers
508 views

C# XML serialization of derived classes

Hi I am trying to serialize an array of objects which are derived from a class and I keep hitting the same error using c#. Any help is much appreciated. obviously this example has been scaled down ...
2
votes
6answers
192 views

Any way in C++ for a base class to diallow virtual methods in all derived classes?

Part of our system uses memory shared between processes who do not share a common ancestor. We place C++ objects in this shared memory. Methods on these objects are either inline in the headers or ...
2
votes
4answers
678 views

Avoid slicing of exception types (C++)

I am designing an exception hierarchy in C++ for my library. The "hierarchy" is 4 classes derived from std::runtime_error. I would like to avoid the slicing problem for the exception classes so made ...
2
votes
2answers
2k views

How to access a data class's private member variable from another derived class whose parent class is a friend class of the data class?

I have three classes: A data holder class CDataHolder, which uses a Pimpl pattern class CDataHolder { public: // ... private: friend class CBase; struct PImpl; PImpl* iPimpl; }; A base class ...
1
vote
5answers
94 views

C++: Can I write a template class that derives from T?

I'm not exactly sure how to word this in English, but I want to do something like this: template <class T> class derived: public T { blah }; Where basically, I have a template class, but I'm ...
1
vote
0answers
79 views

Xcode error: failed to launch

I have a Mac app I have written to support iCloud. However, I get this when trying to run the app: error: failed to launch ...
1
vote
2answers
72 views

Every derived table must have its own alias

I have the following query: SELECT `snap`.`ID`, `user`.`username`, `vote`.`type` FROM (`snap`) JOIN `user` as u ON `u`.`ID` = `snap`.`user` LEFT JOIN (select * from vote where user = "18") as vote ...
1
vote
2answers
57 views

Inherited GroupBox has OnPaint jitters

I've been searching all morning and unfortunately I'm not sure what the techincal term is for this issue, so I'm unable to find a resolution. When I derive from a GroupBox and override the onPaint ...
1
vote
1answer
51 views

How to create a derived TextBox control?

I need to create a custom TextBox control that allows user input HTML tags. I added a new property called HtmlEnabled, default is false. If it is false, it will act exactly like the original TextBox; ...
1
vote
7answers
63 views

implementing abstract methods/classes in java

Can I implement abstract methods in an abstract base class A in java? If the answer is yes and there is an implemented abstract method in a base class A and there is a derived class B from A (B is ...
1
vote
1answer
77 views

Converting a Derived Class to Base Class for WCF Serialisation

I have two classes... [Serializable] [DataContract] public class A { [DataMember] public string _a { get; set; } [DataMember] public bool _b ...
1
vote
3answers
178 views

Get address of base object from derived object

I'm getting a very confusing error in my program. I think I may have two different objects of the same class where I thought I had the same object. It is confusing because I am dealing with a very ...
1
vote
6answers
220 views

Overriding an abstract property with a derived return type in c#

I have four classes. Request, DerivedRequest, Handler, DerivedHandler. The Handler class has a property with the following declaration: public abstract Request request { get; set; } The ...
1
vote
2answers
114 views

'base' values may only be used to make direct calls to the base implementations of overridden members

Why can't I call the base implementation of f here: type Base = abstract f : int -> int -> int default this.f (x : int) (y : int) : int = x + y type Derived = inherit Base ...
1
vote
2answers
95 views

JSON: How to handle attributes derived from the key?

I have a JSON object like this in my application: var pages = { home: { title: "Home", description: "The home page", file: "home.html", url: "/home" }, ...
1
vote
2answers
79 views

Stack of polymorphed classes

dear C++ professionals. I got a problem. I have a program, which has 1 abstract class base_class and 2 derived classes: sippeers and dbget. It also has 2 threads. First thread gets commands from user, ...
1
vote
3answers
80 views

Acessing derived members from vector of base type

Say I have some situation like this: class Vertex { public: Position position; Normal normal; Texcoord texcoord; int boneID; }; class VertexSkinned: public Vertex { public: ...

1 2 3