mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2026-04-10 06:11:54 +10:00
13 lines
222 B
C++
13 lines
222 B
C++
#pragma once
|
|
|
|
#include <qdatetime.h>
|
|
#include <qprocess.h>
|
|
|
|
namespace qs {
|
|
|
|
struct Common {
|
|
static const QDateTime LAUNCH_TIME;
|
|
static inline QProcessEnvironment INITIAL_ENVIRONMENT = {}; // NOLINT
|
|
};
|
|
|
|
} // namespace qs
|