Total members 11889 |It is currently Thu Mar 28, 2024 1:26 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Point class in C++
cpp code
// Point.cpp: implementation of the Point class.
//
//////////////////////////////////////////////////////////////////////

#include "Point.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Point::Point()
{

}

Point::~Point()
{

}





void Point::SetPosition(int NewX,int NewY)
{
x=NewX;
y=NewY;




}
int Point::SetX()
{
return x;



}
int Point::SetY()
{
return y;
}



.h file
cpp code
// Point.h: interface for the Point class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_POINT_H__09069B6A_BD64_418B_ACB5_3E0DD810307D__INCLUDED_)
#define AFX_POINT_H__09069B6A_BD64_418B_ACB5_3E0DD810307D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class Point
{

public:
Point();
// void Point(int NewX,int NewY);
void SetPosition (int NewX,int NewY);
int SetX();
int SetY();
virtual ~Point();
protected:
int x,y;

};


#endif // !defined(AFX_POINT_H__09069B6A_BD64_418B_ACB5_3E0DD810307D__INCLUDED_)




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Point class in C++
 Mid-point Algorithm using j2me     -  
 Curve Control Point in java     -  
 All 4 CCNA semesters in power point pass?     -  
 Drawing Circle using Mid-point implmented using J2me     -  
 Draw Circles using Mid-Point Algorithm Equations- On Mouse     -  
 Define class helper class to check the method existance     -  
 java abstract class,concrete class and interface     -  
 relationship between the Canvas class and the Graphics class     -  
 Define class inside another class C++     -  
 inner class that is a member of an outer class?     -  



Topic Tags

C++ OOP
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com