2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-07-05 09:37:04 +02:00
|
|
|
|
|
|
|
#ifndef DBREFERENCE_H
|
|
|
|
#define DBREFERENCE_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "db_ido/i2-db_ido.hpp"
|
2013-11-03 13:45:26 +01:00
|
|
|
|
2013-07-05 09:37:04 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A database reference.
|
|
|
|
*
|
|
|
|
* @ingroup ido
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
struct DbReference
|
2013-07-05 09:37:04 +02:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 09:43:49 +01:00
|
|
|
DbReference() = default;
|
2013-07-05 09:37:04 +02:00
|
|
|
DbReference(long id);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool IsValid() const;
|
|
|
|
operator long() const;
|
2013-07-05 09:37:04 +02:00
|
|
|
private:
|
2018-01-04 09:43:49 +01:00
|
|
|
long m_Id{-1};
|
2013-07-05 09:37:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DBREFERENCE_H */
|