Chatterino
chatterino2
src
util
CombinePath.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <QDir>
4
#include <QString>
5
6
namespace
chatterino
{
7
8
// https://stackoverflow.com/a/13014491
9
inline
QString
combinePath
(
const
QString &a,
const
QString &b)
10
{
11
return
QDir::cleanPath(a + QDir::separator() + b);
12
}
13
14
}
// namespace chatterino
chatterino
Definition:
Application.cpp:48
chatterino::combinePath
QString combinePath(const QString &a, const QString &b)
Definition:
CombinePath.hpp:9
Generated by
1.8.13