19 lines
321 B
C++
19 lines
321 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class FavoriteCfg
|
|
{
|
|
public:
|
|
FavoriteCfg();
|
|
~FavoriteCfg();
|
|
void GetUpdateSql(std::vector<std::string>& ups);
|
|
void Add(std::string name, std::string value);
|
|
|
|
public:
|
|
static std::string CONFIG_NAME;
|
|
std::map<std::string, std::string> mFavoriteMap;
|
|
};
|