
* Added command extension system Resolve #10 * Added akashi definitions * Updated headers to comply to the standard * Added full definition to argument * Clang-format pass * Missing header for GCC * Missing header for GCC * Move method implementation to source file
18 lines
417 B
C++
18 lines
417 B
C++
#ifndef AKASHIDEFS_H
|
|
#define AKASHIDEFS_H
|
|
|
|
#include <QString>
|
|
#include <qnamespace.h>
|
|
|
|
namespace akashi {
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
|
|
using SplitBehavior = QString::SplitBehavior;
|
|
#else
|
|
using SplitBehavior = Qt::SplitBehaviorFlags;
|
|
#endif
|
|
const SplitBehavior KeepEmptyParts = SplitBehavior::KeepEmptyParts;
|
|
const SplitBehavior SkipEmptyParts = SplitBehavior::SkipEmptyParts;
|
|
}
|
|
|
|
#endif // AKASHIDEFS_H
|