~ubuntu-branches/ubuntu/hardy/pacman/hardy

« back to all changes in this revision

Viewing changes to point.cc

  • Committer: Bazaar Package Importer
  • Author(s): Peter Joseph
  • Date: 2001-07-16 00:40:44 UTC
  • Revision ID: james.westby@ubuntu.com-20010716004044-faape96k5f658yxa
Tags: 10-13
Fixed HPPA build problems thanks to Snowman (closes: #104861)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include"point.h"
2
2
Point::Point(int xx=0,int yy=0) { x=xx; y=yy; }; 
3
 
Point::val_x() { return x; };
4
 
Point::val_y() { return y; };
 
3
int Point::val_x() { return x; };
 
4
int Point::val_y() { return y; };
5
5
void Point::set_x(int xx) { x=xx; };
6
6
void Point::set_y(int yy) { y=yy; };
7
7
void Point::set_xy(int xx,int yy) { x=xx; y=yy; };