mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-28 04:12:49 +00:00
12 lines
311 B
C++
12 lines
311 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, string_array &exclude_remarks, string_array &include_remarks);
|
|
|
|
#endif // NODEMANIP_H_INCLUDED
|