// Note: Instrumentation statements are highlighted in green
#include "ContactInfoBase.hpp"
///////////////////////////////////////////////////////////////////////////////
// ContactInfoBase class
///////////////////////////////////////////////////////////////////////////////
// Visual Member Definition
VISIBILITY_START(ContactInfoBase, "Contact Info Base Class", 1)
VISIBILITY_END
ContactInfoBase::ContactInfoBase(void)
{
}
ContactInfoBase::ContactInfoBase(const ContactInfoBase & that)
{
*this = that;
}
ContactInfoBase::~ContactInfo(void)
{
}
ContactInfoBase & ContactInfoBase::operator =(const ContactInfoBase & that)
{
return *this;
}
std::ostream & operator<< (std::ostream& os, ContactInfoBase & out_obj)
{
return os;
}
std::istream & operator>> (std::istream & is, ContactInfoBase & in_obj)
{
return is;
}
bool ContactInfoBase::operator==(const ContactInfoBase & that) const
{
return true;
}
bool ContactInfoBase::operator!=(const ContactInfoBase & that) const
{
return false;
}
bool ContactInfoBase::operator<(const ContactInfoBase & that) const
{
return false;
}
bool ContactInfoBase::operator>(const ContactInfoBase & that) const
{
return false;
}
void ContactInfoBase::clear(void)
{
}
|
| Copyright 2002-2007 Outerface Technologies, Inc. |