473,780 Members | 2,229 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help: going crazy with a proxy class...

Hi, I'm trying to learn proxy classes in C++ so I've written the
following code, trying to modify an example given in Deitel & Deitel's
C++ book.
I am trying to "hide" details of the original class (employee.h)
through a proxy class (employeeproxy. h).
What am I doing wrong? Please help... I will be grateful forever.
employee.h
----------

// Employee class definition.

#include <iostream>
#include <cstring>
using namespace std;
class Employee {

public:
Employee( const char * first, const char *last )
{
firstName = new char[ strlen( first ) + 1 ];
strcpy( firstName, first );

lastName = new char[ strlen( last ) + 1 ];
strcpy( lastName, last );

++count; // increment static count of employees

cout << "Employee constructor for " << firstName
<< ' ' << lastName << " called." << endl;

}; // end Employee constructor
~Employee(){
cout << "~Employee( ) called for " << firstName
<< ' ' << lastName << endl;

delete [] firstName; // recapture memory
delete [] lastName; // recapture memory

--count; // decrement static count of employees

}; // destructor
const char *getFirstName() const
{
return firstName;
};

const char *getLastName() const
{
return lastName;
};

// static member function
static int getCount()
{
return count;

}; // return # objects instantiated
private:
char *firstName;
char *lastName;

// static data member
static int count; // number of objects instantiated

}; // end class Employee

int Employee::count = 0;
#endif
employeeproxy.h
---------------

class Employee;

class ProxyEmployee {

public:

ProxyEmployee(c onst char *, const char *);

~ProxyEmployee( );

const char *getFirstName() const;
const char *getLastName() const;

static int getCount();

private:

Employee *ptr;
};
employeeproxy.c pp
-----------------

#include "employeeproxy. h"
#include "employee.h "

ProxyEmployee:: ProxyEmployee(c onst char * name, const char * surname)

{
ptr = new Employee(name, surname);
}

const char * ProxyEmployee:: getFirstName() const {
return ptr->getFirstName() ;
}

const char * ProxyEmployee:: getLastName() const {
return ptr->getLastName( );
}

int ProxyEmployee:: getCount() {
return Employee::getCo unt();
}

ProxyEmployee:: ~ProxyEmployee( )
{
delete ptr;
}
TestProgram.cpp
---------------

// Driver to test class ProxyEmployee.
#include <iostream>

using std::cout;
using std::endl;

#include <new> // C++ standard new operator

#include "employeeproxy. h" // Employee class definition

int main()
{
cout << "Number of employees before instantiation is "
<< ProxyEmployee:: getCount() << endl; // use class name

ProxyEmployee *e1Ptr = new Employee( "Susan", "Baker" );
ProxyEmployee *e2Ptr = new Employee( "Robert", "Jones" );

cout << "Number of employees after instantiation is "
<< e1Ptr->getCount();

cout << "\n\nEmploy ee 1: "
<< e1Ptr->getFirstName ()
<< " " << e1Ptr->getLastName( )
<< "\nEmployee 2: "
<< e2Ptr->getFirstName ()
<< " " << e2Ptr->getLastName( ) << "\n\n";

delete e1Ptr; // recapture memory
e1Ptr = 0; // disconnect pointer from free-store space
delete e2Ptr; // recapture memory
e2Ptr = 0; // disconnect pointer from free-store space

cout << "Number of employees after deletion is "
<< ProxyEmployee:: getCount() << endl;

} // end main

Jul 23 '05 #1
2 3789
What is the problem you have to start with (besides declaring using
namespacde std in a header file)?
My best guess would be a problem at the lines:
ProxyEmployee *e1Ptr = new Employee( "Susan", "Baker" );
ProxyEmployee *e2Ptr = new Employee( "Robert", "Jones" );

I expect you get a complaint that the compiler (or the linker) doesn't
know what type of object Employee is.
And a complaint that you cannot stick a pointer to an object of the
type Employee in a pointer of the type ProxyEmployee.
Try altering the lines into
ProxyEmployee *e1Ptr = new ProxyEmployee( "Susan", "Baker" );
ProxyEmployee *e2Ptr = new ProxyEmployee( "Robert", "Jones" );

Jul 23 '05 #2
ve********@hotm ail.com:

: I expect you get a complaint that the compiler (or the linker)
doesn't
: know what type of object Employee is.
: And a complaint that you cannot stick a pointer to an object of the
: type Employee in a pointer of the type ProxyEmployee.

Arrrgh thanks, I'd forgotten to change those constructors!!

Jonas

Jul 23 '05 #3

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

Similar topics

12
5758
by: Me | last post by:
Hi, I would like learn from people with experience in C++, which of the following styles of way to construct "get/set" member functions would be the best in terms of usability, speed, et cetera. The following class with be used as an example: class MyClass { public: // member function would go here. private: int data_;
5
3808
by: Jason | last post by:
Hello. I am trying to learn how operator overloading works so I wrote a simple class to help me practice. I understand the basic opertoar overload like + - / *, but when I try to overload more complex operator, I get stuck. Here's a brief description what I want to do. I want to simulate a matrix (2D array) from a 1D array. so what I have so far is something like this: class Matrix
8
5482
by: baustin75 | last post by:
Posted: Mon Oct 03, 2005 1:41 pm Post subject: cannot mail() in ie only when debugging in php designer 2005 -------------------------------------------------------------------------------- Hello, I have a very simple problem but cannot seem to figure it out. I have a very simple php script that sends a test email to myself. When I debug it in PHP designer, it works with no problems, I get the test email. If
5
3487
by: Benne Smith | last post by:
Hi, I have three enviroments; a development, a testing and a production enviroment. I'm making a big application (.exe), which uses alot of different webservices. I don't use the webservices by adding a WebReference, since it does not allow me to keep state (cookiecontainer) or to specify functions on the classes (like if i want to override the ToString() function on a class from my webservice). So the only way i can see how i can get...
7
1448
by: Douglas Robson | last post by:
Ok, I've removed the MyItem class which is found in References.cs and replaced it with a reference to the namespace that has MyItem in it. I've also got rid of the tag at the top of the MyItem class. the web service works now, only the problem is, it only returns objects which are created by the default constructor. public MyItem getMyItem() {
12
5342
by: Noel | last post by:
Hello, I'm currently developing a web service that retrieves data from an employee table. I would like to send and retrieve a custom employee class to/from the webservice. I have currently coded the custom employee class and have built it as a separate library (employee.dll). This employee.dll is being referenced by both the web service and the windows application. I face the following problem when I send this class to the webservice.
2
5974
by: kkb | last post by:
Hello! First, I'm sorry because of my english... I'll try to be understandable! I've got a strange problem using .NET 2003 C# and I haven't figured it out for a long time. I'm implementing an application to download images using System.NET classes (webclient, webrequest) asynchronously behind proxy server. The reading method works like this: System.Net.WebClient client=new System.Net.WebClient();
2
1566
by: archana | last post by:
Hi all, I want to send webrquest throguh anonymous proxy. Can anyone tell me how to validate ip address and port number of anonynmous proxy server. Is it using TctpClient class ? And while sending request through anonymous proxy if ip address of that
0
5576
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted ******************************************************** For this teeny job, please refer to: http://feeds.reddit.com/feed/8fu/?o=25
0
9636
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10306
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10139
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10075
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7485
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6727
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5373
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4037
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3632
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.