annotate include/core/anime_season_db.h @ 291:9a88e1725fd2

*: refactor lots of stuff I forgot to put this into different commits, oops! anyway, it doesn't really matter *that* much since this is an unfinished hobby project anyway. once it starts getting stable commit history will be more important, but for now it's not that big of a deal
author Paper <paper@paper.us.eu.org>
date Sun, 12 May 2024 16:31:07 -0400
parents dd211ff68b36
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
260
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
1 #ifndef MINORI_CORE_ANIME_SEASON_DB_H_
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
2 #define MINORI_CORE_ANIME_SEASON_DB_H_
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
3
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
4 #include "core/anime.h"
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
5 #include "core/date.h"
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
6
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
7 namespace Anime::Season {
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
8
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
9 std::vector<int> GetAllAnimeForSeason(SeriesSeason season, Date::Year year);
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
10
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
11 }
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
12
dd211ff68b36 pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
diff changeset
13 #endif // MINORI_CORE_ANIME_SEASON_DB_H_