C/C++ Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingC/C++ Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old November 17th, 2009, 04:36 PM
Nether Nether is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 7 Nether User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 58 m 18 sec
Reputation Power: 0
Classes - Got 4 erros and have no idea whats wrong. Please take a look and give me some advice

Okay here is the problem,
The workers have won a 7.6% pay increase, effective 6 months retroactively. This program is to accept the previous annual salary, then outputs the retroactive pay due the employee, the new annual salary, and the new monthly salary. Allow user to repeat as desired. The appropriate formulae are:
const double INCREASE = 0.076;
newSalary = salary * (1 + INCREASE);
monthly = salary / 12;
retroactive = (salary – oldSalary)/2;


here is my first .cpp file "not the main"
Code:
#include <iostream>
#include <iomanip>
using namespace std;
const double INCREASE = 0.076;
class Salary
{
public:
	void setSal(float sal);
	float newSal();
	float getRetroactive(float num);
private:
	float newSalary;
	float oldSalary;
	float retroactive;
};



void Salary::setSal(float sal)
{
	oldSalary = sal;
}

float Salary::newSal()
{
	newSalary = oldSalary * (1 + INCREASE);
	return newSalary;
}
float Salary::getRetroactive(float num)
{
	retroactive = (num - oldSalary) / 2;
	return retroactive;
}



"Here is my main .cpp file"

Code:
 
#include <iostream>
#include <iomanip>
#include "newSalary.cpp"
using namespace std;



int main()
{
	Salary ss;
	float oSal, nSal, ret, monthly, nMonthly;
	cout << "Enter current salary: ";
	cin >>oSal;
	monthly = oSal / 12;
	ss.setSal(oSal);
	nSal = ss.newSal();
	nMonthly = nSal / 12;
	ret = ss.getRetroactive(oSal);
	cout << "Old Monthly is: " << monthly << endl;
	cout << "New Monthly is: " << nMonthly << endl << endl;
	cout << "Old Salary is: " << oSal << endl;
	cout << "New Salary is: " << nSal << endl << endl;
	cout << "Retroactive is: " << ret << endl;
	
	return 0;
}


And the errors i get are:
ary.obj : error LNK2005: "public: void __thiscall Salary::setSal(float)" (?setSal@Salary@@QAEXM@Z) already defined in main.obj
1>newSalary.obj : error LNK2005: "public: float __thiscall Salary::newSal(void)" (?newSal@Salary@@QAEMXZ) already defined in main.obj
1>newSalary.obj : error LNK2005: "public: float __thiscall Salary::getRetroactive(float)" (?getRetroactive@Salary@@QAEMM@Z) already defined in main.obj
1>E:\Project 4\Debug\Project 4.exe : fatal error LNK1169: one or more multiply defined symbols found

Reply With Quote
  #2  
Old November 18th, 2009, 07:52 AM
MaHuJa's Avatar
MaHuJa MaHuJa is offline
Contributing User
Click here for more information.
 
Join Date: Dec 2007
Posts: 990 MaHuJa User rank is Private First Class (20 - 50 Reputation Level)MaHuJa User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 1 Week 15 h 32 m 39 sec
Reputation Power: 3
Send a message via Skype to MaHuJa Send a message via XFire to MaHuJa
#include "newSalary.cpp"

There's your problem.

Create a file newSalary.h, move the Salary class definition to it:
Code:
class Salary
{
public:
	void setSal(float sal);
	float newSal();
	float getRetroactive(float num);
private:
	float newSalary;
	float oldSalary;
	float retroactive;
};

and #include that file from both newSalary.cpp and main.cpp
__________________
Quote:
Programming by Coincidence
Fred types in some more code, tries it, and it still seems to work. [Then] the program suddenly stops working. [...] Fred doesn’t know why the code is failing because he didn’t know why it worked in the first place.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingC/C++ Help > Classes - Got 4 erros and have no idea whats wrong. Please take a look and give me some advice


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek