Atlas Game Manager
A game manager for f95 and dlsite written in c++
Loading...
Searching...
No Matches
parser.hpp
Go to the documentation of this file.
1//
2// Created by kj16609 on 6/28/23.
3//
4
5#pragma once
6#ifndef ATLASGAMEMANAGER_PARSER_HPP
7#define ATLASGAMEMANAGER_PARSER_HPP
8
9#include <QJsonObject>
10
12{
13
14 //This is clearly used. Yet gcc thinks it is not
15#ifdef __GNUC__
16#pragma GCC diagnostic push
17#pragma GCC diagnostic ignored "-Wunused-const-variable"
18 constexpr std::uint64_t MAX_REMOTE_VERSION { 0 };
19#pragma GCC diagnostic pop
20#else
21 constexpr std::uint64_t MAX_REMOTE_VERSION { 0 };
22#endif
23
24 namespace v0
25 {
26 void processJson( const QJsonObject& json );
27 }
28} // namespace remote::parsers
29
30#endif //ATLASGAMEMANAGER_PARSER_HPP
Definition parser.hpp:25
void processJson(const QJsonObject &json)
Definition v0_parser.cpp:366
Definition parser.hpp:12
constexpr std::uint64_t MAX_REMOTE_VERSION
Definition parser.hpp:21