forked from quickshell/quickshell
This pragma ends up used to set things like QQC theme which shouldn't be cascaded into child processes.
13 lines
210 B
C++
13 lines
210 B
C++
#pragma once
|
|
|
|
#include <qdatetime.h>
|
|
#include <qprocess.h>
|
|
|
|
namespace qs {
|
|
|
|
struct Common {
|
|
static const QDateTime LAUNCH_TIME;
|
|
static QProcessEnvironment INITIAL_ENVIRONMENT; // NOLINT
|
|
};
|
|
|
|
} // namespace qs
|