view include/gui/pages/seasons.h @ 150:ffa535b6d630

*: avoid usage of std::[pair,tuple] https://arne-mertz.de/2017/03/smelly-pair-tuple/ it's better to use real structures and such where variables are easily known... also apparently using [] on structs is actually valid? I had no idea.
author Paper <mrpapersonic@gmail.com>
date Tue, 14 Nov 2023 16:27:33 -0500
parents 8043152ef9d4
children d14f8e0e40c3
line wrap: on
line source

#ifndef __gui__pages__seasons_h
#define __gui__pages__seasons_h

#include <QWidget>

class SeasonsPage final : public QWidget {
		Q_OBJECT

	public:
		SeasonsPage(QWidget* parent = nullptr);
};

#endif // __gui__pages__seasons_h