Hi,
Is there any way to "overload" a struct?
e.g.
having already
struct stA1
{
int i_ID;
int i_Type;
};
and adding something like
struct stA1
{
int i_ID;
int i_Person;
};
I tried to use a namespace on the second "overoloadi ng" struct like
namespace KPT1_1
{
struct stA1
{
int i_ID;
int i_Person;
};
}
with not much luck... any clever ideas?
Thanks a lot
Telis
Is there any way to "overload" a struct?
e.g.
having already
struct stA1
{
int i_ID;
int i_Type;
};
and adding something like
struct stA1
{
int i_ID;
int i_Person;
};
I tried to use a namespace on the second "overoloadi ng" struct like
namespace KPT1_1
{
struct stA1
{
int i_ID;
int i_Person;
};
}
with not much luck... any clever ideas?
Thanks a lot
Telis
Comment