14 lines
352 B
C++
14 lines
352 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;
|
|
#endif //OFFICEASSISTANT_GLOBALVARIABLES_H
|