forked from matkatmusic/PFMCPP_Project5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWrappers.h
More file actions
41 lines (36 loc) · 859 Bytes
/
Copy pathWrappers.h
File metadata and controls
41 lines (36 loc) · 859 Bytes
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
39
40
41
#pragma once
struct City;
struct ControlRoom;
struct LiveRoom;
struct StudioComplex;
struct LargestFiveCities;
struct CityWrapper
{
CityWrapper( City* ptr );
~CityWrapper();
City* pointerToCity = nullptr;
};
struct ControlRoomWrapper
{
ControlRoomWrapper( ControlRoom* ptr );
~ControlRoomWrapper();
ControlRoom* pointerToControlRoom = nullptr;
};
struct LiveRoomWrapper
{
LiveRoomWrapper( LiveRoom* ptr );
~LiveRoomWrapper();
LiveRoom* pointerToLiveRoom = nullptr;
};
struct StudioComplexWrapper
{
StudioComplexWrapper( StudioComplex* ptr );
~StudioComplexWrapper();
StudioComplex* pointerToStudioComplex = nullptr;
};
struct LargestFiveCitiesWrapper
{
LargestFiveCitiesWrapper( LargestFiveCities* ptr );
~LargestFiveCitiesWrapper();
LargestFiveCities* pointerToLargestFiveCities = nullptr;
};