mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-08 21:19:24 +00:00
15 lines
376 B
C++
15 lines
376 B
C++
#ifndef AMUSE_COMMON_HPP
|
|
#define AMUSE_COMMON_HPP
|
|
|
|
#include "boo/System.hpp"
|
|
#include <QString>
|
|
#include <QDir>
|
|
|
|
boo::SystemString QStringToSysString(const QString& str);
|
|
QString SysStringToQString(const boo::SystemString& str);
|
|
|
|
bool MkPath(const QString& path, QWidget* parent);
|
|
bool MkPath(const QDir& dir, const QString& file, QWidget* parent);
|
|
|
|
#endif //AMUSE_COMMON_HPP
|