16 lines
396 B
C++
16 lines
396 B
C++
//
|
|
// Created by HW on 2023/07/27.
|
|
//
|
|
|
|
#ifndef OFFICEASSISTANT_GLOBALVARIABLES_H
|
|
#define OFFICEASSISTANT_GLOBALVARIABLES_H
|
|
#include "exitmanager.h"
|
|
class MainWindowLayout;
|
|
extern ExitManager exit_manager;
|
|
extern double scale;
|
|
extern MainWindowLayout *mainWindowLayout;
|
|
extern QString url_param;
|
|
extern bool autostart;
|
|
extern bool agree;
|
|
#endif //OFFICEASSISTANT_GLOBALVARIABLES_H
|