mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-27 12:34:50 -05:00
17 lines
416 B
C++
17 lines
416 B
C++
#pragma once
|
|
#ifndef UTILITY_H
|
|
#define UTILITY_H
|
|
|
|
#include <QString>
|
|
|
|
namespace Util {
|
|
void numericalModeSort(QStringList &list);
|
|
int roundUp(int numToRound, int multiple);
|
|
QString toDefineCase(QString input);
|
|
QString toHexString(uint32_t value, int minLength = 0);
|
|
QString toHtmlParagraph(const QString &text);
|
|
Qt::Orientations getOrientation(bool xflip, bool yflip);
|
|
}
|
|
|
|
#endif // UTILITY_H
|