efl/src/lib/eolian_cxx/Eolian_Cxx.hh

48 lines
594 B
C++

#ifndef EOLIAN_CXX_LIB_HH
#define EOLIAN_CXX_LIB_HH
extern "C"
{
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <Eolian.h>
}
namespace efl { namespace eolian {
struct eolian_init
{
eolian_init()
{
::eolian_init();
}
~eolian_init()
{
::eolian_shutdown();
}
};
struct eolian_state
{
Eolian *value;
eolian_state()
{
value = ::eolian_new();
}
~eolian_state()
{
::eolian_free(value);
}
inline Eolian_Unit const* as_unit() const
{
return (Eolian_Unit const*)value;
}
};
} }
#endif // EOLIAN_CXX_LIB_HH