The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
29 views

Fortran90 assigning pointers and derived types at runtime

I have a question regarding assigning Fortran90 derived types and pointers at runtime. I want to pass a derived variable type to a subroutine after the code reads an input file. So depending on the ...
0
votes
1answer
16 views

Derived Column: join 2 numbers from variable

I have to input rows of data where no month is given with. It has to have a month and a year. In my package i use a multicast to sent it to 12 derived columns where i want to add the Year and the ...
1
vote
2answers
27 views

Call extended class function

So i have a class called Person class Person{ private: public: Person(); } and 1 more class called Patient class Patient : public Person{ private: string text_; ...
0
votes
3answers
40 views

Implementing operator<< for a derived class

So I have a base class (Shape) and three derived classes, Circle, Rectangle and Square (Square is derived from Rectangle) I'm attempting to implement operator<< which just calls the correct ...
0
votes
2answers
42 views

calling a function in multiple derived classes in c#

How can I call a function in all derived classes when a global game state changes? public abstract class GameStateBehaviour { public event EventHandler<GameStateEvents> StateChanged; ...
1
vote
1answer
26 views

how to run a cumulative derived query in yii

I have a table with 3 fields(id, jobsprocess,percent) and want to work out the cumulative percent on the fly, so it is a derived field. in sql i would do this, which returns 13 records. set @x := 0; ...
0
votes
1answer
29 views

Grails domain object derived property not updated after save

I am using a derived field in Grails domain class: BigDecimal expectedDurationHrs static mapping = { expectedDurationHrs formula: 'time_to_sec(timediff(expected_end_date, expected_start_date )) ...
0
votes
3answers
57 views

How to define a “List” of derived classes?

I have a base class and some derived classes public class MyBase {...} public class MyClass1 : MyBase {...} public class MyClass2 : MyBase {...} Now I want to make a list of these derived classes ...
1
vote
0answers
31 views

Java use extends or a Factory what's best in this case?

hello guys lets say I am making an Ability class that looks like this : public class Ability{ private final List<Transformation> transformations; } if i want to make a specialized ability ...
1
vote
1answer
56 views

SSIS derived column very slow (date manipulation)

SETUP: I have a very large SSIS package that sorts through a lot of different flat files and throws them into tables that fit the file definitions to a T... except the date. The dates come over in ...
0
votes
0answers
25 views

ms access display derived total in subform

I have a form that has a subform and another subform. The 2nd subform I am working out the sum and placing the footer. The 1st subform I am referencing to this derived field. Problem I have is the ...
1
vote
0answers
29 views

ms access get sum from derived field on forms

I have a derived field in a subform which calculates sum. On the main form I would like to calculate the sum of all the records of the derived field. How would I do this? Below is the subform ...
-1
votes
2answers
81 views

c++ Inheritance class constructor

I have a slight problem where to be honest I am totally confused with derived class constructors and need some help. I have a base class with the parameterised constructor: ...
0
votes
1answer
59 views

Store derived object in vector of base type

I have a std::vector of pointers of a base class type: vector<Base*> baseList; And I push a derived class type onto the vector: Derived* derivedObject = new Derived(); ...
1
vote
2answers
80 views

Why is my derived class not converible to base class?

I have the following classes: public class Item { } public class ItemCollection<TItem> : ICollection<TItem> where TItem : Item, new() { } I have two derived classes: public ...
1
vote
2answers
97 views

Containers and derived classes

I am in the process of making a very simple game whereby objects (elements Either A or B) fly around the screen, colliding etc. The only difference between A and B is the color of the object (A = ...
2
votes
4answers
82 views

c++ Is a class derived from a specific class?

Is it possible what I'm trying to achieve. This is the problem: class Content{}; class Content1 : public Content{}; class Content1_1 : public Content1{}; class Content1_2 : public Content1{}; class ...
0
votes
0answers
62 views

Deriving specialized template class

I have a problem with the derivation of template classes. The following code-snippet will show my problem: class object { } template <class T> class container { public: cotainer(void) { ...
1
vote
1answer
74 views

SQL derived table results in unknown column

+------------------+ +------------------+ | object | | example | +------------------+ +------------------+ | id | | id ...
0
votes
2answers
83 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 ...
0
votes
0answers
35 views

Displaying properties in a DataGridView from a derived class

Let me apologize, as I am still grasping the concepts of OO. SO my wording may be a bit off. I have two user controls, with a datagridview. The first is a base control which extends a second user ...
-1
votes
2answers
87 views

two classes within a class

What is a better way to implement this in C++ (without if-else). In C I can initialize function pointer, and then just call function pointers. So if you look at class C, some objects of class C use ...
0
votes
1answer
46 views

How can I initialize a member const reference in a derived class, when I wish to call a base class constructor?

I cannot find this question even being asked anywhere...so that makes me believe i'm doing something very wrong here... Lets say I have a base class, A, with a constructor that takes in int ...
3
votes
1answer
187 views

Java - overridden method not getting called

I'm working on a Java exercise and can't figure out what I am doing wrong. I made a Movie class (with variables: rating, title, movieId and a constant for FEE_AMT) and then extended the class with: ...
-2
votes
1answer
53 views

How to set a property in class from a derived class

I am not sure how this functions in C#. I have a class: public class FindIt() { } public class FindItFrm() { private bool _amISet = false; public FindItFrm() { } public bool AmISet() ...
1
vote
2answers
157 views

serialize base class property in one derived class without serializing it in second serialize class

I am looking an issue, but i am still confuse how to tackle this. I have base class and there are some properties. There are two derived classes from base class. I want to serialize base class ...
2
votes
1answer
81 views

Casting a generic object to an object with an interface of the generic type

I have the following code: public class EntityFilter<T> {} public interface IEntity {} public class TestEntity : IEntity {} class Program { static void Main(string[] args) { ...
0
votes
2answers
53 views

How come when I create a class derived from another GameComponent class, the game class will only update what's in the original class' update?

When I am creating my class ConfigsPC which is derived from another class which I created as a base class, Configs, I am not able to update anything in the Update method for the class ConfigsPC but I ...
0
votes
3answers
77 views

Overloading binary operator> in a derived class in c++

I have searched far and wide for a specific answer to this question, and cannot find it. I am trying to create a base class with a virtual operator> that I can override in the derived class. Currently ...
0
votes
2answers
929 views

Converting a string to a decimal value in an SSIS package

I have a flat file that I am importing into SQL Server 2008 using an SSIS package. The file contains a field with a number, followed by a column with a negative sign when the preceding column value ...
1
vote
1answer
151 views

boost's load_construct_data and serializing derived classes through pointer to base

I have three classes: class A { private: friend class boost::serialization::access; template<class Archive> void serialize(Archive & ar, const unsigned int version) { ...
0
votes
1answer
88 views

Boost::python wrapper for derived class method

I have C++ class and its wrapper for boost::python: class CApp { public: virtual bool FOOs (){}; //does not matter for now bool Run( const char * First,const char * Last) { ... ...
6
votes
4answers
149 views

C++ templates and derived classes

I am trying to understand the following code. Derived is a derived structure from T and what does "," means and then Fallback {} template <class T> struct has_FlowTraits<T, true> { ...
1
vote
1answer
53 views

Database Derived Value same as foreign key ?

sorry if my question isn't relevan to programming task, i would be very glad if you're willing to answer my question. my question is, does database derived value is the same as foreign key ? based ...
4
votes
1answer
275 views

c++ custom output stream with indentation

I'm having some trouble trying to implement a custom stream class to generate nicely indented code in an output file. I've searched online extensively but there doesn't seem to be a consensus on the ...
2
votes
1answer
103 views

Should i be worried if a subquery returns too much data?

Here is the example: SELECT <columns> FROM (..........<subquery>..........) AS xxx INNER JOIN(s) with xxx............. LEFT OUTER JOIN(s) with xxx........ WHERE <filter ...
1
vote
0answers
70 views

Eclipse - SVN derived files are committed in background

I have several projects in eclipse and sometimes I mark a file as derived so SVN ignores the file and it doesn't get committed. For a while this worked for me but somehow I have some problems now. ...
0
votes
2answers
80 views

python class inheritance: constructor of derived class issue

I have two classes: a base class A and the derived class B. In the constructor of B I tried to use the constructor of A to initialize the instance. Why assignment "self = A(x)" in constructor of the ...
1
vote
4answers
162 views

C# Base and 2 Derived Classes initialization

So I only want to use one class Object for all of my functions but I do not want to directly use that class instead I need to access the members of the derived classes. Take this example: class A { ...
0
votes
2answers
60 views

Describe why converting a base class pointer to a derived class pointer is not allowed in C++

I have a vague idea of why this isn't allowed, but I'm looking for something more concrete. I'm assuming it has something to do with the fact that all of the methods in a base class might not ...
3
votes
0answers
171 views

Can't access a variable in my base class from a derived class [closed]

I'm developing a mini game for a project using XNA and I have a base class called "Sprite.cs" that holds a position vector (public Vector2 m_vPosition;). I then have a derived class called ...
3
votes
2answers
91 views

effect of both base and derived virtual destructors

I've had some second thoughts on multiple virtual destructors, esp. after reading reading http://blogs.msdn.com/b/oldnewthing/archive/2004/05/07/127826.aspx . Suppose I have class Base { ...
3
votes
1answer
138 views

How to make a deep copy of an object which is derived from a List<T>

I have the following classes: public partial class AuthorizationSetObject { public AuthorizationObjectList AuthorizationObjects { get; set; } } public partial class AuthorizationObject { ...
0
votes
0answers
49 views

Casting to base and backwards using (no) pointers

I'm a bit confused about base class copy constructors. Let's sat I have this code: struct object { object() {} object(const object& value) void function() { } template <class ...
3
votes
5answers
120 views

Is there any way to know if the non-pure virtual function has been implemented by the derived class in C++?

I am creating a class which is callback based. I need to give the client a freedom to invoke the callback that he defines. For example, I have a class Base: class Base { ... public: virtual void ...
-1
votes
1answer
117 views

Friend of a derived class can access what variables?

To simplify my problem, I have something like this: class Base { private: protected: int a,b; string c; public: [some functions here] } class Derived : public Base{ [some ...
0
votes
0answers
32 views

Error defining derived class constructor

I'm having some trouble with derived class constructors. Here's the relevant code: #include <iostream> #include <math.h> using namespace std; #define pi 3.14 class Shape{ public: ...
2
votes
5answers
420 views

accessing base class public member from derived class

Is it possible to access base class public member from instance of derived class in some other locations in the program. class base { public: int x; base(int xx){ x = xx; } }; class ...
2
votes
2answers
51 views

Interfaces and child classes

In C++, I have a class FooA and a class FooB that both are child classes of a base class Foo. FooB has to implement interface Bar. If I only have a Foo pointer to a FooB and wish to use FooB's Bar ...
0
votes
0answers
64 views

Cannot access protected member from template base class

I have the following code: template < typename T > class SP { protected: T* m_pData; long* m_pRefCounter; public: virtual SP<T> & operator=( const ...

1 2 3 4