consolidate all repos to one for archive
This commit is contained in:
17
semester_2/programiranje_2/primeri/Example01/Point.h
Normal file
17
semester_2/programiranje_2/primeri/Example01/Point.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef EXAMPLE01_POINT_H
|
||||
#define EXAMPLE01_POINT_H
|
||||
|
||||
class Point {
|
||||
private:
|
||||
int x, y;
|
||||
public:
|
||||
int getX();
|
||||
int getY();
|
||||
void setX(int x);
|
||||
void setY(int y);
|
||||
void print();
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif //EXAMPLE01_POINT_H
|
||||
Reference in New Issue
Block a user