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