// Note: Instrumentation statements are highlighted in green
#ifndef __HOMEINFO_HPP
#define __HOMEINFO_HPP
#include <iostream>
#include <vobject.hpp>
using namespace visibility;
///////////////////////////////////////////////////////////////////////////////
// HomeInfo class
///////////////////////////////////////////////////////////////////////////////
class HomeInfo : public VObject // Add VObject to the inheritance chain
{
DECLARE_VISIBILITY(HomeInfo) // Instrumentation statement
public: // data
std::string street;
std::string city;
std::string state;
std::string zipCode;
std::string country;
std::string phone;
std::string fax;
std::string mobile;
std::string webPage;
public: // functions
HomeInfo(void);
HomeInfo(const HomeInfo & that);
virtual ~HomeInfo(void);
HomeInfo & operator =(const HomeInfo & that);
void clear(void);
virtual void populateEditView(void);
friend std::ostream & operator<< (std::ostream & os, HomeInfo & obj);
friend std::istream & operator>> (std::istream & is, HomeInfo & obj);
};
DECLARE_VISIBILITY_CREATOR(HomeInfo) // Instrumentation statement
#endif // __HOMEINFO_HPP
|
| Copyright 2002-2007 Outerface Technologies, Inc. |