临时保存

This commit is contained in:
cpdl
2025-04-30 17:36:24 +08:00
parent 7ed7033716
commit 43515d8058
60 changed files with 29146 additions and 67 deletions

29
windows/src/FLTConvert.h Normal file
View File

@@ -0,0 +1,29 @@
// Copyright (c) 2022 NetEase, Inc. All rights reserved.
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
#ifndef FLTCONVERT_H
#define FLTCONVERT_H
#include <string>
#include <unordered_map>
#include "common/FLTService.h"
#include "common/utils/singleton.h"
class Convert {
public:
SINGLETONG(Convert)
std::string getStringFormMapForLog(
const flutter::EncodableMap* arguments) const;
void getLogList(const std::string& strLog,
std::list<std::string>& listLog) const;
std::string getStringFormListForLog(
const flutter::EncodableList* arguments) const;
private:
Convert();
};
#endif // FLTCONVERT_H