HEBI C++ API  3.4.0
util.hpp File Reference
#include <string>

Go to the source code of this file.

Classes

class  hebi::FunctionCallResult
 Used as a return. More...
 

Namespaces

 hebi
 

Macros

#define HEBI_DISABLE_COPY_MOVE(Class)
 
#define HEBI_DISABLE_COPY(Class)
 

Macro Definition Documentation

◆ HEBI_DISABLE_COPY_MOVE

#define HEBI_DISABLE_COPY_MOVE (   Class)
Value:
/* Disable copy constructor. */ \
Class(const Class& other) = delete; \
/* Disable move constructor. */ \
Class(Class&& other) = delete; \
/* Disable copy assigment operator. */ \
Class& operator= (const Class& other) = delete; \
/* Disable move assigment operator. */ \
Class& operator= (Class&& other) = delete;

◆ HEBI_DISABLE_COPY

#define HEBI_DISABLE_COPY (   Class)
Value:
/* Disable copy constructor. */ \
Class(const Class& other) = delete; \
/* Disable copy assigment operator. */ \
Class& operator= (const Class& other) = delete;