mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-28 12:22:37 +00:00
Add exprtimental support for generating Mellow configuration. Add proxy customization for downloading rulesets and subscriptions. Add more customizations in manage URL arguments. Optimize codes. INIReader: Fix line break remove not working.
12 lines
254 B
C++
12 lines
254 B
C++
#ifndef NODEMANIP_H_INCLUDED
|
|
#define NODEMANIP_H_INCLUDED
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "nodeinfo.h"
|
|
|
|
void addNodes(std::string link, std::vector<nodeInfo> &allNodes, int groupID, std::string proxy = "");
|
|
|
|
#endif // NODEMANIP_H_INCLUDED
|