14 lines
516 B
C++
14 lines
516 B
C++
#pragma once
|
|
|
|
#include "qtcommon.h"
|
|
|
|
struct QTextFile : QFile
|
|
{
|
|
using QFile::QFile;
|
|
QTextFile(const QString& name, QIODevice::OpenMode mode) : QFile(name) { open(mode | QIODevice::Text); }
|
|
};
|
|
|
|
inline std::wstring S(const QString& S) { return { S.toStdWString() }; }
|
|
inline QString S(const std::wstring& S) { return QString::fromStdWString(S); }
|
|
inline HMODULE LoadLibraryOnce(std::wstring fileName) { if (HMODULE module = GetModuleHandleW(fileName.c_str())) return module; return LoadLibraryW(fileName.c_str()); }
|