473,414 Members | 1,667 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,414 software developers and data experts.

Casting base class to inherited one

Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class but I was just wondering if there is
another way how to do this or if there's something wrong with our
object design?
Thanks for any help

Jul 31 '07 #1
19 3342
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.

The only hitch, of course, is that you end up with a copy, but there's
no way around that.

Jul 31 '07 #2
On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class

Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.

The only hitch, of course, is that you end up with a copy, but there's
no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layers
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?

Jul 31 '07 #3
On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:
On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:


On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
The only hitch, of course, is that you end up with a copy, but there's
no way around that.

When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layers
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?
Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?

Jul 31 '07 #4
On Jul 30, 9:43 pm, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:


On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
The only hitch, of course, is that you end up with a copy, but there's
no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layers
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?

Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?
Forget it. I just read the C# spec on line, here:

http://msdn2.microsoft.com/en-us/lib...64(VS.71).aspx

It says quite clearly that I'm wrong: you cannot provide implicit or
explicit conversions either up or down the class hierarchy.

Which means that the only option left open to you is a copy
constructor: your derived class must have a constructor that accepts a
member of your base class, like this:

public class Derived : Base
{
public Derived(Base baseObject)
{
...
}
}

or, you could make it a static method in your derived class:

public static Derived DerivedFromBase(Base baseObject) { ... }

Bummer about the conversions, though. I guess it causes some sort of
problem within the CLR....

Jul 31 '07 #5
On Jul 31, 12:43 pm, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:
On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
The only hitch, of course, is that you end up with a copy, but there's
no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layers
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?

Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?
This is my inherited class:

public class IntraMapsLayer : layerObj
{
public IntraMapsLayer(superMapObj map) : base (map)
{
this.currentSuperMapObj = map;
}

public static implicit operator IntraMapsLayer(layerObj layer)
{
IntraMapsLayer newLayer = new IntraMapsLayer(this.map);
newLayer.bandsitem = layer.bandsitem;
newLayer.classitem = layer.classitem;
newLayer.connection = layer.connection;
newLayer.connectiontype = layer.connectiontype;
newLayer.data = layer.data;
newLayer.debug = layer.debug;
newLayer.dump = layer.dump;
//newLayer.extent = layer.extent;
newLayer.filteritem = layer.filteritem;
newLayer.footer = layer.footer;
newLayer.group = layer.group;
newLayer.header = layer.header;
//newLayer.index = layer.index;
newLayer.labelangleitem = layer.labelangleitem;
newLayer.labelcache = layer.labelcache;
newLayer.labelitem = layer.labelitem;
newLayer.labelmaxscale = layer.labelmaxscale;
newLayer.labelminscale = layer.labelminscale;
newLayer.labelrequires = layer.labelrequires;
newLayer.labelsizeitem = layer.labelsizeitem;
//newLayer.map = layer.map;
newLayer.maxfeatures = layer.maxfeatures;
newLayer.maxscale = layer.maxscale;
//newLayer.metadata = layer.metadata;
newLayer.minscale = layer.minscale;
newLayer.name = layer.name;
//newLayer.numclasses = layer.numclasses;
//newLayer.numitems = layer.numitems;
//newLayer.numjoins = layer.numjoins;
//newLayer.numprocessing = layer.numprocessing;
newLayer.offsite = layer.offsite;
newLayer.plugin_library = layer.plugin_library;
newLayer.plugin_library_original = layer.plugin_library_original;
newLayer.postlabelcache = layer.postlabelcache;
newLayer.requires = layer.requires;
newLayer.sizeunits = layer.sizeunits;
newLayer.status = layer.status;
newLayer.styleitem = layer.styleitem;
newLayer.symbolscale = layer.symbolscale;
newLayer.template = layer.template;
newLayer.tileindex = layer.tileindex;
newLayer.tileitem = layer.tileitem;
newLayer.tolerance = layer.tolerance;
newLayer.toleranceunits = layer.toleranceunits;
newLayer.transform = layer.transform;
newLayer.transparency = layer.transparency;
newLayer.type = layer.type;
newLayer.units = layer.units;
return newLayer;
}
this implicit operator does not even compile. I haven't mentioned it
yet but we're bound to .NET 1.1 unfortunatelly

Jul 31 '07 #6
On Jul 31, 12:51 pm, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 9:43 pm, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:
On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
The only hitch, of course, is that you end up with a copy, but there's
no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layers
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?
Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?

Forget it. I just read the C# spec on line, here:

http://msdn2.microsoft.com/en-us/lib...64(VS.71).aspx

It says quite clearly that I'm wrong: you cannot provide implicit or
explicit conversions either up or down the class hierarchy.

Which means that the only option left open to you is a copy
constructor: your derived class must have a constructor that accepts a
member of your base class, like this:

public class Derived : Base
{
public Derived(Base baseObject)
{
...
}

}

or, you could make it a static method in your derived class:

public static Derived DerivedFromBase(Base baseObject) { ... }

Bummer about the conversions, though. I guess it causes some sort of
problem within the CLR....
I didn't get what was the copy constructor supposed to do - can u
explain it to me?

Jul 31 '07 #7
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
So does VB .NET 2005.
Jul 31 '07 #8
ja********@gmail.com wrote:
On Jul 31, 12:43 pm, Bruce Wood <brucew...@canada.comwrote:
>On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:
>>On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
The only hitch, of course, is that you end up with a copy, but there's
no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layer s
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?
Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?

This is my inherited class:

public class IntraMapsLayer : layerObj
{
public IntraMapsLayer(superMapObj map) : base (map)
{
this.currentSuperMapObj = map;
}

public static implicit operator IntraMapsLayer(layerObj layer)
{
IntraMapsLayer newLayer = new IntraMapsLayer(this.map);
newLayer.bandsitem = layer.bandsitem;
newLayer.classitem = layer.classitem;
newLayer.connection = layer.connection;
newLayer.connectiontype = layer.connectiontype;
newLayer.data = layer.data;
newLayer.debug = layer.debug;
newLayer.dump = layer.dump;
//newLayer.extent = layer.extent;
newLayer.filteritem = layer.filteritem;
newLayer.footer = layer.footer;
newLayer.group = layer.group;
newLayer.header = layer.header;
//newLayer.index = layer.index;
newLayer.labelangleitem = layer.labelangleitem;
newLayer.labelcache = layer.labelcache;
newLayer.labelitem = layer.labelitem;
newLayer.labelmaxscale = layer.labelmaxscale;
newLayer.labelminscale = layer.labelminscale;
newLayer.labelrequires = layer.labelrequires;
newLayer.labelsizeitem = layer.labelsizeitem;
//newLayer.map = layer.map;
newLayer.maxfeatures = layer.maxfeatures;
newLayer.maxscale = layer.maxscale;
//newLayer.metadata = layer.metadata;
newLayer.minscale = layer.minscale;
newLayer.name = layer.name;
//newLayer.numclasses = layer.numclasses;
//newLayer.numitems = layer.numitems;
//newLayer.numjoins = layer.numjoins;
//newLayer.numprocessing = layer.numprocessing;
newLayer.offsite = layer.offsite;
newLayer.plugin_library = layer.plugin_library;
newLayer.plugin_library_original = layer.plugin_library_original;
newLayer.postlabelcache = layer.postlabelcache;
newLayer.requires = layer.requires;
newLayer.sizeunits = layer.sizeunits;
newLayer.status = layer.status;
newLayer.styleitem = layer.styleitem;
newLayer.symbolscale = layer.symbolscale;
newLayer.template = layer.template;
newLayer.tileindex = layer.tileindex;
newLayer.tileitem = layer.tileitem;
newLayer.tolerance = layer.tolerance;
newLayer.toleranceunits = layer.toleranceunits;
newLayer.transform = layer.transform;
newLayer.transparency = layer.transparency;
newLayer.type = layer.type;
newLayer.units = layer.units;
return newLayer;
}
this implicit operator does not even compile. I haven't mentioned it
yet but we're bound to .NET 1.1 unfortunatelly
Have you tried this:

return (IntraMapsLayer)newLayer;

And why not go OO? There really is no need for the copy constructor and
the implicit conversion operator you are attempting to write. It just
makes for extra code that you'll then have to debug and maintain. And I
don't understand the purpose of the currentSuperMapObj since that is you
(IntraMapsLayer)!

public class IntraMapsLayer : layerObj // why is this call "Obj"
// do you really have a class
// called layerObj?
int _i1, _i2;
{
public IntraMapsLayer(int i1, int i2) : base (map)
{
_i1 = i1;
_i2 = i2;
}
}

IntraMapsLayer layer1 = new layerObj(1, 2);

The constructor then only needs to deals with any fields in the
IntraMapsLayer that are not in the base class. You can then up-cast if
you want:

layerObj layer2 = (IntraMapsLayer)layer1;

so that you can get at the fields specific to the layerObj class.

HTH

--
-glenn-
Jul 31 '07 #9
On Jul 31, 9:13 pm, "G.Doten" <gdo...@gmail.comwrote:
jan.lou...@gmail.com wrote:
On Jul 31, 12:43 pm, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:
>On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
The only hitch, of course, is that you end up with a copy, but there's
no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layers
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?
Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?
This is my inherited class:
public class IntraMapsLayer : layerObj
{
public IntraMapsLayer(superMapObj map) : base (map)
{
this.currentSuperMapObj = map;
}
public static implicit operator IntraMapsLayer(layerObj layer)
{
IntraMapsLayer newLayer = new IntraMapsLayer(this.map);
newLayer.bandsitem = layer.bandsitem;
newLayer.classitem = layer.classitem;
newLayer.connection = layer.connection;
newLayer.connectiontype = layer.connectiontype;
newLayer.data = layer.data;
newLayer.debug = layer.debug;
newLayer.dump = layer.dump;
//newLayer.extent = layer.extent;
newLayer.filteritem = layer.filteritem;
newLayer.footer = layer.footer;
newLayer.group = layer.group;
newLayer.header = layer.header;
//newLayer.index = layer.index;
newLayer.labelangleitem = layer.labelangleitem;
newLayer.labelcache = layer.labelcache;
newLayer.labelitem = layer.labelitem;
newLayer.labelmaxscale = layer.labelmaxscale;
newLayer.labelminscale = layer.labelminscale;
newLayer.labelrequires = layer.labelrequires;
newLayer.labelsizeitem = layer.labelsizeitem;
//newLayer.map = layer.map;
newLayer.maxfeatures = layer.maxfeatures;
newLayer.maxscale = layer.maxscale;
//newLayer.metadata = layer.metadata;
newLayer.minscale = layer.minscale;
newLayer.name = layer.name;
//newLayer.numclasses = layer.numclasses;
//newLayer.numitems = layer.numitems;
//newLayer.numjoins = layer.numjoins;
//newLayer.numprocessing = layer.numprocessing;
newLayer.offsite = layer.offsite;
newLayer.plugin_library = layer.plugin_library;
newLayer.plugin_library_original = layer.plugin_library_original;
newLayer.postlabelcache = layer.postlabelcache;
newLayer.requires = layer.requires;
newLayer.sizeunits = layer.sizeunits;
newLayer.status = layer.status;
newLayer.styleitem = layer.styleitem;
newLayer.symbolscale = layer.symbolscale;
newLayer.template = layer.template;
newLayer.tileindex = layer.tileindex;
newLayer.tileitem = layer.tileitem;
newLayer.tolerance = layer.tolerance;
newLayer.toleranceunits = layer.toleranceunits;
newLayer.transform = layer.transform;
newLayer.transparency = layer.transparency;
newLayer.type = layer.type;
newLayer.units = layer.units;
return newLayer;
}
this implicit operator does not even compile. I haven't mentioned it
yet but we're bound to .NET 1.1 unfortunatelly

Have you tried this:

return (IntraMapsLayer)newLayer;

And why not go OO? There really is no need for the copy constructor and
the implicit conversion operator you are attempting to write. It just
makes for extra code that you'll then have to debug and maintain. And I
don't understand the purpose of the currentSuperMapObj since that is you
(IntraMapsLayer)!

public class IntraMapsLayer : layerObj // why is this call "Obj"
// do you really have a class
// called layerObj?
int _i1, _i2;
{
public IntraMapsLayer(int i1, int i2) : base (map)
{
_i1 = i1;
_i2 = i2;
}

}

IntraMapsLayer layer1 = new layerObj(1, 2);

The constructor then only needs to deals with any fields in the
IntraMapsLayer that are not in the base class. You can then up-cast if
you want:

layerObj layer2 = (IntraMapsLayer)layer1;

so that you can get at the fields specific to the layerObj class.

HTH

--
-glenn-
as I described in my first email - we actually have a class called
layerObj. It comes from open source dll so we cannot change it. We
need to add some extra functionality to it - we did that by creating
derived class called IntraMapsLayer thus public class IntraMapsLayer :
layerObj

Whenever you do this - your implicit conversion operator:
(IntraMapsLayer) layer1 would not work!! You can try it but that is
what this topic is about. You cannot do that. At firts - you have to
write your own implicit conversion operator to do this. And second you
cannot write this conversion operator because you're trying to convert
base class to it's child. .NET doesn't allow that.

Aug 1 '07 #10
ja********@gmail.com wrote:
Hi,
We're building a mapping application and inside we're using open
source dll called MapServer. This dll uses object model that has quite
a few classes. In our app we however need to little bit modify come of
the classes so they match our purpose better - mostly add a few
methods etc.
Example: Open source lib has classes Map and Layer defined. The
relationship between them is one to many.
We created our own versions (inherited) of Map called OurMap and our
version of Layer called OurLayer. The only difference between them is
that they have some extra methods (because we need them to do little
bit extra).
Is there any way how can I convert the base class (either Map or
Layer) to our inherited one (OurMap or OurLayer)?
I know that implicit or explicit conversion operators don't work
between inherited and base class but I was just wondering if there is
another way how to do this or if there's something wrong with our
object design?
Thanks for any help
I would suggest encapsulation instead of inheritance.

Put the Map instance as a member in the OurMap class. You can provide
methods that call the methods in the Map class, but if there are a lot
of methods you might want to expose the Map object as a property instead.

--
Göran Andersson
_____
http://www.guffa.com
Aug 1 '07 #11
ja********@gmail.com wrote:
On Jul 31, 9:13 pm, "G.Doten" <gdo...@gmail.comwrote:
>jan.lou...@gmail.com wrote:
>>On Jul 31, 12:43 pm, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:
On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
>On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
>>Hi,
>>We're building a mapping application and inside we're using open
>>source dll called MapServer. This dll uses object model that has quite
>>a few classes. In our app we however need to little bit modify come of
>>the classes so they match our purpose better - mostly add a few
>>methods etc.
>>Example: Open source lib has classes Map and Layer defined. The
>>relationship between them is one to many.
>>We created our own versions (inherited) of Map called OurMap and our
>>version of Layer called OurLayer. The only difference between them is
>>that they have some extra methods (because we need them to do little
>>bit extra).
>>Is there any way how can I convert the base class (either Map or
>>Layer) to our inherited one (OurMap or OurLayer)?
>>I know that implicit or explicit conversion operators don't work
>>between inherited and base class
>Who told you that? It's certainly not true. C# allows you to write
>your own conversion operator, either implicit or explicit, that copies
>the members from your base class object into a new, derived class
>object, and return the derived object.
>The only hitch, of course, is that you end up with a copy, but there's
>no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Layer s
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?
Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?
This is my inherited class:
public class IntraMapsLayer : layerObj
{
public IntraMapsLayer(superMapObj map) : base (map)
{
this.currentSuperMapObj = map;
}
public static implicit operator IntraMapsLayer(layerObj layer)
{
IntraMapsLayer newLayer = new IntraMapsLayer(this.map);
newLayer.bandsitem = layer.bandsitem;
newLayer.classitem = layer.classitem;
newLayer.connection = layer.connection;
newLayer.connectiontype = layer.connectiontype;
newLayer.data = layer.data;
newLayer.debug = layer.debug;
newLayer.dump = layer.dump;
//newLayer.extent = layer.extent;
newLayer.filteritem = layer.filteritem;
newLayer.footer = layer.footer;
newLayer.group = layer.group;
newLayer.header = layer.header;
//newLayer.index = layer.index;
newLayer.labelangleitem = layer.labelangleitem;
newLayer.labelcache = layer.labelcache;
newLayer.labelitem = layer.labelitem;
newLayer.labelmaxscale = layer.labelmaxscale;
newLayer.labelminscale = layer.labelminscale;
newLayer.labelrequires = layer.labelrequires;
newLayer.labelsizeitem = layer.labelsizeitem;
//newLayer.map = layer.map;
newLayer.maxfeatures = layer.maxfeatures;
newLayer.maxscale = layer.maxscale;
//newLayer.metadata = layer.metadata;
newLayer.minscale = layer.minscale;
newLayer.name = layer.name;
//newLayer.numclasses = layer.numclasses;
//newLayer.numitems = layer.numitems;
//newLayer.numjoins = layer.numjoins;
//newLayer.numprocessing = layer.numprocessing;
newLayer.offsite = layer.offsite;
newLayer.plugin_library = layer.plugin_library;
newLayer.plugin_library_original = layer.plugin_library_original;
newLayer.postlabelcache = layer.postlabelcache;
newLayer.requires = layer.requires;
newLayer.sizeunits = layer.sizeunits;
newLayer.status = layer.status;
newLayer.styleitem = layer.styleitem;
newLayer.symbolscale = layer.symbolscale;
newLayer.template = layer.template;
newLayer.tileindex = layer.tileindex;
newLayer.tileitem = layer.tileitem;
newLayer.tolerance = layer.tolerance;
newLayer.toleranceunits = layer.toleranceunits;
newLayer.transform = layer.transform;
newLayer.transparency = layer.transparency;
newLayer.type = layer.type;
newLayer.units = layer.units;
return newLayer;
}
this implicit operator does not even compile. I haven't mentioned it
yet but we're bound to .NET 1.1 unfortunatelly
Have you tried this:

return (IntraMapsLayer)newLayer;

And why not go OO? There really is no need for the copy constructor and
the implicit conversion operator you are attempting to write. It just
makes for extra code that you'll then have to debug and maintain. And I
don't understand the purpose of the currentSuperMapObj since that is you
(IntraMapsLayer)!

public class IntraMapsLayer : layerObj // why is this call "Obj"
// do you really have a class
// called layerObj?
int _i1, _i2;
{
public IntraMapsLayer(int i1, int i2) : base (map)
{
_i1 = i1;
_i2 = i2;
}

}

IntraMapsLayer layer1 = new layerObj(1, 2);

The constructor then only needs to deals with any fields in the
IntraMapsLayer that are not in the base class. You can then up-cast if
you want:

layerObj layer2 = (IntraMapsLayer)layer1;

so that you can get at the fields specific to the layerObj class.

HTH

--
-glenn-

as I described in my first email - we actually have a class called
layerObj. It comes from open source dll so we cannot change it. We
need to add some extra functionality to it - we did that by creating
derived class called IntraMapsLayer thus public class IntraMapsLayer :
layerObj
Sure, but I'm not proposing you change the layerObj class (one reason is
that you can't and the other reason is that it is not OO). I'm proposing
that you inherit a new class from it, in which case you pick up all the
functionality of layerObj and can extend that functionality in you
subclass. It also means you don't have to have any kind of copy
constructor (which in this case would just waste execution time and
space). That's not what you appear to be doing in the code you posted
but it is what I am doing in the code that I posted. If I can help
clarify the code I posted, just let me know.
Whenever you do this - your implicit conversion operator:
(IntraMapsLayer) layer1 would not work!! You can try it but that is
what this topic is about. You cannot do that. At firts - you have to
write your own implicit conversion operator to do this. And second you
cannot write this conversion operator because you're trying to convert
base class to it's child. .NET doesn't allow that.
But I didn't create an implicit conversion operator. I create a class
(IntraMapsLayer) that subclasses another class (layerObj). So now there
are two distinct types, albeit tightly related. You can do this:

layerObj l1 = new layerObj(3, 4);
IntraMapsLayer l2 = new IntraMapsLayer(1, 2);
layerObj l3 = new IntraMapsLaer(1, 2);
layerObj l4 = (IntraMapsLaer)l3;

- l1 can only access members of the base class layerObj that has been
supplied by your vendor. The code for layerObj has not been changed in
any way.

- l2 can access not only the members of the base class layerObj but also
any members you have extended that class with in your IntraMapsLayerclass.

- l3 can only access the members of your layerObj class, even though
it's base class is the vendor-supplied layerObj class it is typed as a
layerObj.

- But l3 can be up-casted, for example see l4, in which l4 (which refers
to the same object as l3 does) can now access members of both the base
class and your class that derives from it.

* * *

BTW, I goofed in my code and this line:

public IntraMapsLayer(int i1, int i2) : base (map)

should read:

public IntraMapsLayer(int i1, int i2) : base (3, 4)

In other words, the constructor(s) for your new class must pass the
appropriate parameters to the base class.

* * *

Are you sure that IntraMapsLayer is not the name of the class that your
vendor has supplied to you and that layerObj is the name of class that
you have created and are attempted to dervice from IntraMapsLayer? The
names sure imply that to me.

--
-glenn-
Aug 1 '07 #12
Göran Andersson wrote:
I would suggest encapsulation instead of inheritance.
That would certainly work, but wouldn't it needlessly duplicate the
amount of memory needed and require copy constructors and implicit
conversion operators (looks to be not a trivial amount of code in this
cas) as opposed to simply inheriting from the vendor's class?
--
-glenn-
Aug 1 '07 #13
G.Doten wrote:
Göran Andersson wrote:
I would suggest encapsulation instead of inheritance.

That would certainly work, but wouldn't it needlessly duplicate the
amount of memory needed and require copy constructors and implicit
conversion operators (looks to be not a trivial amount of code in this
cas) as opposed to simply inheriting from the vendor's class?
No, your class would just contain a reference to the Map object, not a
copy of it.

If your class doesn't add any data, it would only contain that
reference, and the constructor would just take a reference to the Map
object and put it in the reference:

public class OurMap {

private Map _map;

public OurMap(Map map) {
_map = map;
}

public Map Map { get { return _map; } }

... and your own methods

}

When you want an OurMap object from a Map object, just create one:

OurMap our = new OurMap(theMap);

To access the methods in the Map class, just use the Map property:

our.Map.SomeOriginalMethod();

--
Göran Andersson
_____
http://www.guffa.com
Aug 1 '07 #14
Göran Andersson wrote:
G.Doten wrote:
>Göran Andersson wrote:
> I would suggest encapsulation instead of inheritance.

That would certainly work, but wouldn't it needlessly duplicate the
amount of memory needed and require copy constructors and implicit
conversion operators (looks to be not a trivial amount of code in this
cas) as opposed to simply inheriting from the vendor's class?

No, your class would just contain a reference to the Map object, not a
copy of it.
Right, my mistake.
If your class doesn't add any data, it would only contain that
reference, and the constructor would just take a reference to the Map
object and put it in the reference:

public class OurMap {

private Map _map;

public OurMap(Map map) {
_map = map;
}

public Map Map { get { return _map; } }

... and your own methods

}

When you want an OurMap object from a Map object, just create one:

OurMap our = new OurMap(theMap);

To access the methods in the Map class, just use the Map property:

our.Map.SomeOriginalMethod();
Yeah, I get all that. But the OP wants to inherit from this class and
extend it. So I still think doing that is the best approach and was make
it unnecessary for the OP to write all that copy code. If they didn't
want to extend that class I would agree that encapsulation would be a
good idea, like you say.

--
-glenn-
Aug 1 '07 #15
G.Doten wrote:
Yeah, I get all that. But the OP wants to inherit from this class and
extend it. So I still think doing that is the best approach and was make
it unnecessary for the OP to write all that copy code. If they didn't
want to extend that class I would agree that encapsulation would be a
good idea, like you say.
But he also wants to get an OwnMap object from a Map object, and using
inheritance that is not possible without creating a new OwnMap object
and copy everything from the existing Map object to the new object.

So, there is no simple way of doing what the OP wants. It's either a lot
of work using inheritence, or using encapsulation which doesn't do it
exactly the way that the OP requested, but is easier to implement. It
just comes down to prioritising. :)

--
Göran Andersson
_____
http://www.guffa.com
Aug 1 '07 #16
Göran Andersson wrote:
G.Doten wrote:
>Yeah, I get all that. But the OP wants to inherit from this class and
extend it. So I still think doing that is the best approach and was
make it unnecessary for the OP to write all that copy code. If they
didn't want to extend that class I would agree that encapsulation
would be a good idea, like you say.

But he also wants to get an OwnMap object from a Map object, and using
inheritance that is not possible without creating a new OwnMap object
and copy everything from the existing Map object to the new object.
Do you mean the OurMap in the original post he made? That's a different
discussion. The OP switched over to a whole different set of class names
and provided sample code of what he was trying to do, and that's what I
was replying to. I see that this sub-thread is back to talking about
Map/OurMap and Layer/OurLayer. Sorry about the confusion; I wasn't
paying attention. FWIW, encapsulation, as you have already explained, is
a great solution to the original topic.
So, there is no simple way of doing what the OP wants. It's either a lot
of work using inheritence, or using encapsulation which doesn't do it
exactly the way that the OP requested, but is easier to implement. It
just comes down to prioritising. :)
For his IntraMapsLayer class that he is subclassing the layerObj with,
and the functionality he has said he would like for those, I believe
inheritance to be the easiest way to do that. (Again, but not for the
Map/OutMap requirements.)

--
-glenn-
Aug 1 '07 #17
G.Doten wrote:
Göran Andersson wrote:
>G.Doten wrote:
>>Yeah, I get all that. But the OP wants to inherit from this class and
extend it. So I still think doing that is the best approach and was
make it unnecessary for the OP to write all that copy code. If they
didn't want to extend that class I would agree that encapsulation
would be a good idea, like you say.

But he also wants to get an OwnMap object from a Map object, and using
inheritance that is not possible without creating a new OwnMap object
and copy everything from the existing Map object to the new object.

Do you mean the OurMap in the original post he made?
Yes. I replied to the original post.
That's a different
discussion. The OP switched over to a whole different set of class names
and provided sample code of what he was trying to do, and that's what I
was replying to.
But I didn't reply to your reply. :)
I see that this sub-thread is back to talking about
Map/OurMap and Layer/OurLayer. Sorry about the confusion; I wasn't
paying attention. FWIW, encapsulation, as you have already explained, is
a great solution to the original topic.
>So, there is no simple way of doing what the OP wants. It's either a
lot of work using inheritence, or using encapsulation which doesn't do
it exactly the way that the OP requested, but is easier to implement.
It just comes down to prioritising. :)

For his IntraMapsLayer class that he is subclassing the layerObj with,
and the functionality he has said he would like for those, I believe
inheritance to be the easiest way to do that. (Again, but not for the
Map/OutMap requirements.)

--
Göran Andersson
_____
http://www.guffa.com
Aug 1 '07 #18
On Aug 1, 8:14 pm, "G.Doten" <gdo...@gmail.comwrote:
jan.lou...@gmail.com wrote:
On Jul 31, 9:13 pm, "G.Doten" <gdo...@gmail.comwrote:
jan.lou...@gmail.com wrote:
On Jul 31, 12:43 pm, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 9:00 pm, jan.lou...@gmail.com wrote:
On Jul 31, 11:52 am, Bruce Wood <brucew...@canada.comwrote:
On Jul 30, 8:47 pm, jan.lou...@gmail.com wrote:
>Hi,
>We're building a mapping application and inside we're using open
>source dll called MapServer. This dll uses object model that has quite
>a few classes. In our app we however need to little bit modify come of
>the classes so they match our purpose better - mostly add a few
>methods etc.
>Example: Open source lib has classes Map and Layer defined. The
>relationship between them is one to many.
>We created our own versions (inherited) of Map called OurMap and our
>version of Layer called OurLayer. The only difference between them is
>that they have some extra methods (because we need them to do little
>bit extra).
>Is there any way how can I convert the base class (either Map or
>Layer) to our inherited one (OurMap or OurLayer)?
>I know that implicit or explicit conversion operators don't work
>between inherited and base class
Who told you that? It's certainly not true. C# allows you to write
your own conversion operator, either implicit or explicit, that copies
the members from your base class object into a new, derived class
object, and return the derived object.
The only hitch, of course, is that you end up with a copy, but there's
no way around that.
When I try that the compiler complains:
C:\MapServer\IntraMaps60\SpatialEngineWS\Laye rs
\IntraMapsLayer.cs(208): 'DMS.IntraMaps.IntraMapsLayer.implicit
operator DMS.IntraMaps.IntraMapsLayer(layerObj)': user-defined
conversion to/from base class
I googled it and I found some articles that you cannot implicitly
convert from base class to it's child.
Am I doing something wrong?
Could you post the code you wrote? Both your definition of the
implicit conversion operator and your use of it?
This is my inherited class:
public class IntraMapsLayer : layerObj
{
public IntraMapsLayer(superMapObj map) : base (map)
{
this.currentSuperMapObj = map;
}
public static implicit operator IntraMapsLayer(layerObj layer)
{
IntraMapsLayer newLayer = new IntraMapsLayer(this.map);
newLayer.bandsitem = layer.bandsitem;
newLayer.classitem = layer.classitem;
newLayer.connection = layer.connection;
newLayer.connectiontype = layer.connectiontype;
newLayer.data = layer.data;
newLayer.debug = layer.debug;
newLayer.dump = layer.dump;
//newLayer.extent = layer.extent;
newLayer.filteritem = layer.filteritem;
newLayer.footer = layer.footer;
newLayer.group = layer.group;
newLayer.header = layer.header;
//newLayer.index = layer.index;
newLayer.labelangleitem = layer.labelangleitem;
newLayer.labelcache = layer.labelcache;
newLayer.labelitem = layer.labelitem;
newLayer.labelmaxscale = layer.labelmaxscale;
newLayer.labelminscale = layer.labelminscale;
newLayer.labelrequires = layer.labelrequires;
newLayer.labelsizeitem = layer.labelsizeitem;
//newLayer.map = layer.map;
newLayer.maxfeatures = layer.maxfeatures;
newLayer.maxscale = layer.maxscale;
//newLayer.metadata = layer.metadata;
newLayer.minscale = layer.minscale;
newLayer.name = layer.name;
//newLayer.numclasses = layer.numclasses;
//newLayer.numitems = layer.numitems;
//newLayer.numjoins = layer.numjoins;
//newLayer.numprocessing = layer.numprocessing;
newLayer.offsite = layer.offsite;
newLayer.plugin_library = layer.plugin_library;
newLayer.plugin_library_original = layer.plugin_library_original;
newLayer.postlabelcache = layer.postlabelcache;
newLayer.requires = layer.requires;
newLayer.sizeunits = layer.sizeunits;
newLayer.status = layer.status;
newLayer.styleitem = layer.styleitem;
newLayer.symbolscale = layer.symbolscale;
newLayer.template = layer.template;
newLayer.tileindex = layer.tileindex;
newLayer.tileitem = layer.tileitem;
newLayer.tolerance = layer.tolerance;
newLayer.toleranceunits = layer.toleranceunits;
newLayer.transform = layer.transform;
newLayer.transparency = layer.transparency;
newLayer.type = layer.type;
newLayer.units = layer.units;
return newLayer;
}
this implicit operator does not even compile. I haven't mentioned it
yet but we're bound to .NET 1.1 unfortunatelly
Have you tried this:
return (IntraMapsLayer)newLayer;
And why not go OO? There really is no need for the copy constructor and
the implicit conversion operator you are attempting to write. It just
makes for extra code that you'll then have to debug and maintain. And I
don't understand the purpose of the currentSuperMapObj since that is you
(IntraMapsLayer)!
public class IntraMapsLayer : layerObj // why is this call "Obj"
// do you really have a class
// called layerObj?
int _i1, _i2;
{
public IntraMapsLayer(int i1, int i2) : base (map)
{
_i1 = i1;
_i2 = i2;
}
}
IntraMapsLayer layer1 = new layerObj(1, 2);
The constructor then only needs to deals with any fields in the
IntraMapsLayer that are not in the base class. You can then up-cast if
you want:
layerObj layer2 = (IntraMapsLayer)layer1;
so that you can get at the fields specific to the layerObj class.
HTH
--
-glenn-
as I described in my first email - we actually have a class called
layerObj. It comes from open source dll so we cannot change it. We
need to add some extra functionality to it - we did that by creating
derived class called IntraMapsLayer thus public class IntraMapsLayer :
layerObj

Sure, but I'm not proposing you change the layerObj class (one reason is
that you can't and the other reason is that it is not OO). I'm proposing
that you inherit a new class from it, in which case you pick up all the
functionality of layerObj and can extend that functionality in you
subclass. It also means you don't have to have any kind of copy
constructor (which in this case would just waste execution time and
space). That's not what you appear to be doing in the code you posted
but it is what I am doing in the code that I posted. If I can help
clarify the code I posted, just let me know.
Whenever you do this - your implicit conversion operator:
(IntraMapsLayer) layer1 would not work!! You can try it but that is
what this topic is about. You cannot do that. At firts - you have to
write your own implicit conversion operator to do this. And second you
cannot write this conversion operator because you're trying to convert
base class to it's child. .NET doesn't allow that.

But I didn't create an implicit conversion operator. I create a class
(IntraMapsLayer) that subclasses another class (layerObj). So now there
are two distinct types, albeit tightly related. You can do this:

layerObj l1 = new layerObj(3, 4);
IntraMapsLayer l2 = new IntraMapsLayer(1, 2);
layerObj l3 = new IntraMapsLaer(1, 2);
layerObj l4 = (IntraMapsLaer)l3;

- l1 can only access members of the base class layerObj that has been
supplied by your vendor. The code for layerObj has not been changed in
any way.

- l2 can access not only the members of the base class layerObj but also
any members you have extended that class with in your IntraMapsLayerclass.

- l3 can only access the members of your layerObj class, even though
it's base class is the vendor-supplied layerObj class it is typed as a
layerObj.

- But l3 can be up-casted, for example see l4, in which l4 (which refers
to the same object as l3 does) can now access members of both the base
class and your class that derives from it.

* * *

BTW, I goofed in my code and this line:

public IntraMapsLayer(int i1, int i2) : base (map)

should read:

public IntraMapsLayer(int i1, int i2) : base (3, 4)

In other words, the constructor(s) for your new class must pass the
appropriate parameters to the base class.

* * *

Are you sure that IntraMapsLayer is not the name of the class that your
vendor has supplied to you and that layerObj is the name of class that
you have created and are attempted to dervice from IntraMapsLayer? The
names sure imply that to me.

--
-glenn-
Thanks for all your replies - it developed into quite an interesting
discussion. I should probably step back a little bit and try to
properly explain what I'm actually trying to do.
Object model that we have from third party vendor:
mapObj - map object
layerObj - layer object

we want to add some funtionality to both of these so we created:
IntraMapsMap : mapObj
IntraMapsLayer : layerObj

now the fun starts when the third party code creates mapObj instance,
puts some layerObj instances into it (let's say 20 layers) and we
create 2 IntraMapsLayer instances and put them into this mapObj
instance as well (we can do that - mapObj accepts children of layerObj
as well). We have a method to get the layerObj from map object. We
want to be able to get a layerObj instance from mapObj instance and be
able to use some of the functionality of the IntraMapsLayer on it!
That means - we haven't created this instance of layerObj, it's
layerObj object and we want to somehow convert it to IntraMapsLayer.
Objectwise it's possible - they have the same data, just few extra
methods that we want to use. How can I do this?

Aug 6 '07 #19
ja********@gmail.com wrote:
Thanks for all your replies - it developed into quite an interesting
discussion. I should probably step back a little bit and try to
properly explain what I'm actually trying to do.
Object model that we have from third party vendor:
mapObj - map object
layerObj - layer object

we want to add some funtionality to both of these so we created:
IntraMapsMap : mapObj
IntraMapsLayer : layerObj

now the fun starts when the third party code creates mapObj instance,
puts some layerObj instances into it (let's say 20 layers) and we
create 2 IntraMapsLayer instances and put them into this mapObj
instance as well (we can do that - mapObj accepts children of layerObj
as well). We have a method to get the layerObj from map object. We
want to be able to get a layerObj instance from mapObj instance and be
able to use some of the functionality of the IntraMapsLayer on it!
That means - we haven't created this instance of layerObj, it's
layerObj object and we want to somehow convert it to IntraMapsLayer.
Objectwise it's possible - they have the same data, just few extra
methods that we want to use. How can I do this?
You can't do that. You would have to create a new IntraMapsLayer object
and copy all the data from the layerObj object into it.

I once again suggest encapsulation instead of inheritance. Then you can
easily create an IntraMapsLayer object around an existing layerObj object.

--
Göran Andersson
_____
http://www.guffa.com
Aug 8 '07 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: James Brown | last post by:
I have two classes, a base class, and a class base { public: base(); virtual void foo() = 0; }; class derived : public base
2
by: Zac | last post by:
Alright anyone who has 2c throw it in... I am working through a custom xml serializer and have come upon a conundrum, given our class design. The interface implemented on the base class (base...
1
by: Mark McDonald | last post by:
This question kind of follows on from Mike Spass’ posting 10/11/2004; I don’t understand why you can’t declare an implicit operator to convert a base class to a derived class. The text...
1
by: Remco | last post by:
Hi, Let me try to simply explain my questions. I've created a portal site with different types of users, e.g. Portal Administrators and Normal Users. One base class SessionUser (has a enum...
5
by: Andy | last post by:
Hi all, I have a site with the following architecture: Common.Web.dll - Contains a CommonPageBase class which inherits System.Web.UI.Page myadd.dll - Contains PageBase which inherits...
8
by: Michael | last post by:
Hi, I think my problem deals with class casting and inheritance. I want to deal with various Audio Formats, reading into memory for modification, working with it (done by different classes),...
1
by: conchur | last post by:
Is there an elegant way to have a class utilise an inherited method to return a Typed Collection of itself? Example: class MyList<T> : List<T> where T : MyRoot { Add... Remove... }
10
by: Brett Romero | last post by:
Say I have a class inheriting some base class: BaseClass { void Foo() { Update(); } }
9
by: Jess | last post by:
Hello, It seems both static_cast and dynamic_cast can cast a base class pointer/reference to a derived class pointer/reference. If so, is there any difference between them? In addition, if I...
19
by: jan.loucka | last post by:
Hi, We're building a mapping application and inside we're using open source dll called MapServer. This dll uses object model that has quite a few classes. In our app we however need to little bit...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.