Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 778 Bytes

ErrorId.md

File metadata and controls

36 lines (22 loc) · 778 Bytes

ErrorId

class ErrorId

Required header: <Eclog/Error.h>

The ErrorId class represents an unique identifier of an error (See Error).

Member functions

Name Description
operator== Compares the identifier with another identifier.
operator!= Compares the identifier with another identifier.

operator==, operator!=

bool operator==(const ErrorId& other) const;
bool operator!=(const ErrorId& other) const;

Compares the identifier with another identifier.

Parameters

const ErrorId& other Another error identifier.

Return value

bool true if the corresponding comparison holds, false otherwise.