blob: 3a3e39a6c33b3c0921131fcbcf6588cebe32df19 (
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
|