17 lines
192 B
C++
17 lines
192 B
C++
#pragma once
|
|
|
|
class Point;
|
|
|
|
#define WIDTH 800
|
|
#define HEIGHT 600
|
|
|
|
class Display
|
|
{
|
|
private:
|
|
std::vector<Point> m_points;
|
|
|
|
public:
|
|
void show();
|
|
|
|
void setData (std::vector<Point>);
|
|
}; |