efl/src/bindings
Felipe Magno de Almeida ab3eb4b2d3 eet-cxx: add implementation for eet C++.
Usage example:

  struct type
  {
    int foo;
    float bar;
  };

  type t0;

  auto descriptor = make_descriptor("type", &type::ofo, &type::bar);

  eet_data_write(file, descriptor.native_handle(), "type", &t0, false);

  std::unique_ptr<type> p = read_by_ptr(file, "type", descriptor);
  type t = read(file, "type", descriptor);

@feature

Reviewers: cedric, smohanty

Reviewed By: cedric

CC: savio, cedric

Differential Revision: https://phab.enlightenment.org/D659

Signed-off-by: Cedric BAIL <cedric.bail@free.fr>
2014-04-01 22:00:13 +09:00
..
ecore_cxx ecore-cxx: add support for exceptions. 2014-03-07 14:37:03 +09:00
eet_cxx eet-cxx: add implementation for eet C++. 2014-04-01 22:00:13 +09:00
eina_cxx eina-cxx: Fixes compilation errors and warnings in clang 2014-03-11 10:07:18 +09:00