This commit is contained in:
2025-06-24 18:35:50 +04:00
commit 5ff911f351
10 changed files with 737 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#ifdef _WIN32
#ifndef WINDOWS_PARSER_HPP
#include "argument_parser.hpp"
#include <fstream>
#include <string>
namespace argument_parser {
class windows_parser : public base_parser {
public:
windows_parser() {
}
};
}
#endif
#endif