summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/Macros.h
blob: f05729c762b2653e8de0a1391838d60e2c27132f (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
32
33
/* -------------------------------------------

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

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

/// @brief provide support for Macros.h header.

#ifndef _MACROS_H_
#define _MACROS_H_

#define NECTI_COPY_DELETE(KLASS)           \
  KLASS& operator=(const KLASS&) = delete; \
  KLASS(const KLASS&)            = delete;

#define NECTI_COPY_DEFAULT(KLASS)           \
  KLASS& operator=(const KLASS&) = default; \
  KLASS(const KLASS&)            = default;

#define NECTI_MOVE_DELETE(KLASS)      \
  KLASS& operator=(KLASS&&) = delete; \
  KLASS(KLASS&&)            = delete;

#define NECTI_MOVE_DEFAULT(KLASS)      \
  KLASS& operator=(KLASS&&) = default; \
  KLASS(KLASS&&)            = default;

/// @note xxxx is the error placeholder, in hexadecimal.
#define NECTI_ERROR_PREFIX_CXX "CXXxxxx"
#define NECTI_ERROR_PREFIX_CL "CLxxxx"
#define NECTI_ERROR_PREFIX_ASM "ASMxxxx"

#endif /* ifndef _MACROS_H_ */