Files
rk35xx-android14/system/tools/release_tools/config_parser.h
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

29 lines
480 B
C++

#ifndef RELEASE_TOOLS_CONFIG_PARSER_H_
#define RELEASE_TOOLS_CONFIG_PARSER_H_
#include <iostream>
#include "fstream"
#include <dirent.h>
#include <stdio.h>
#include <string>
#include <cstring>
#include <vector>
#include "release_utils.h"
#include "ParserPoint.h"
using namespace std;
enum class TitleType:int {
Filter,
ForceUpdate,
Remote,
Platform,
Unknow
};
vector<ParserPoint> openConfigFile(string fileName);
#endif //RELEASE_TOOLS_CONFIG_PARSER_H_