-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwindowmanager.cpp
More file actions
38 lines (36 loc) · 1.02 KB
/
windowmanager.cpp
File metadata and controls
38 lines (36 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* @file windowmanager.cpp
* @brief Window switcher class implementation
* @author mnxoid
*
* Copyright 2014 by mnxoid,
*
* This software is the confidential and proprietary information
* of mnxoid ("Confidential Information"). You
* shall not disclose such Confidential Information and shall use
* it only in accordance with the terms of the license agreement
* you entered into with mnxoid.
**/
#include "windowmanager.h"
/**
* @brief WindowManager constructor
**/
WindowManager::WindowManager()
{
}
/**
* @brief Initialization function
* @param [in] m - MainWindow reference
* @param [in] a - AdminScreen reference
* @param [in] u - UserScreen reference
* @param [in] x - ExUserScreen reference
* @param [in] g - GoodsMgmtScreen reference
**/
void WindowManager::Init(MainWindow *m, AdminScreen *a, UserScreen *u, ExUserScreen *x, GoodsMgmtScreen *g)
{
WindowManager::mw = m;
WindowManager::ad = a;
WindowManager::us = u;
WindowManager::xu = x;
WindowManager::gs = g;
}