comparison include/core/torrent.h @ 261:3ec7804abf17

include: make header guards more sane The C++ standard[1] says: Each identifier that contains a double underscore __ or begins with an underscore followed by an uppercase letter is reserved to the implementation for any use. [1]: https://timsong-cpp.github.io/cppwp/n4659/lex.name#3.1
author Paper <paper@paper.us.eu.org>
date Wed, 03 Apr 2024 20:04:28 -0400
parents 862d0d8619f6
children b1f625b0227c
comparison
equal deleted inserted replaced
260:dd211ff68b36 261:3ec7804abf17
1 #ifndef __core__torrent_h 1 #ifndef MINORI_CORE_TORRENT_H_
2 #define __core__torrent_h 2 #define MINORI_CORE_TORRENT_H_
3 3
4 #include <QDateTime> 4 #include <QDateTime>
5 #include <string> 5 #include <string>
6 6
7 /* this is really just a fancy struct... 7 /* this is really just a fancy struct...
57 std::string _link; 57 std::string _link;
58 std::string _guid; 58 std::string _guid;
59 QDateTime _date; 59 QDateTime _date;
60 }; 60 };
61 61
62 #endif // __core__torrent_h 62 #endif // MINORI_CORE_TORRENT_H_