mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
21 lines
424 B
C++
21 lines
424 B
C++
#ifndef __WXA_H__
|
|
#define __WXA_H__
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
namespace MMBizWxaAppComm
|
|
{
|
|
|
|
void SplitBySlash(std::string const&,std::vector<std::string> &);
|
|
|
|
/**
|
|
* 路径合并
|
|
*
|
|
* @param base 基础路径
|
|
* @param path 相对路径
|
|
* @param result 合并结果
|
|
*/
|
|
void PathCombine(std::string const& base,std::string const& path,std::string& result);
|
|
}
|
|
|
|
#endif |