Files
med-notes/.pnpm-store/v10/files/21/aa0a1618bad8accd69d7fb473904766eba7099a800eafec2cee23d3ef76dc9efb8752075db999392439cbda8508986c2bc20881c5091a8e7204762d73607ae
2025-05-09 05:30:08 +02:00

12 lines
248 B
Plaintext

// Copyright (c) 2010 LearnBoost <tj@learnboost.com>
#pragma once
template <typename T>
class Point {
public:
T x, y;
Point(T x=0, T y=0): x(x), y(y) {}
Point(const Point&) = default;
Point& operator=(const Point&) = default;
};