summaryrefslogtreecommitdiffhomepage
path: root/dev/Usr/LibWM/WindowConnection.h
blob: 229381300194e07b1bb89fc066f67037e641fe66 (plain)
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

/* -------------------------------------------

	Copyright (C) 2025, Amlal EL Mahrouss, all rights reserved.

------------------------------------------- */

#pragma once

#include <LibCF/Object.h>
#include <LibCF/Array.h>

namespace LibCF
{
	class CFWindowConnection_;

	class CFWindowConnection_ CF_OBJECT
	{
	public:
		explicit CFWindowConnection_() = default;
		virtual ~CFWindowConnection_() = default;

		SCI_COPY_DEFAULT(CFWindowConnection_);

		constexpr static SInt16 kMaxPeers = 16;

		Char						mConnName[256] = {0};
		SInt32						mConnPeersCnt{0};
		CFArray<VoidPtr, kMaxPeers> mConnPeers;
	};
} // namespace LibCF