You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef STRUTIL_H
|
|
#define STRUTIL_H
|
|
|
|
#include <QString>
|
|
|
|
class StrUtil
|
|
{
|
|
public:
|
|
/**
|
|
* @brief camelToUri 驼峰转uri
|
|
* @param camel 驼峰命名
|
|
* @return uri 请求uri资源
|
|
*/
|
|
static QString camelToUri(const QString &camel);
|
|
};
|
|
|
|
#endif // STRUTIL_H
|