blob: 1c46d77c45c5c312976e184aa021606f8b575ab3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/**
* @page emodel_eio_main Emodel_Eio
*
* @date 2014 (created)
*
* @brief Emodel_Eio Library Public API Calls
*
* @section toc Table of Contents
*
* @li @ref emodel_eio_main_intro
*
* @section eo_main_intro Introduction
*
* This module targets file operations using Emodel.
*
* Recommended reading:
*
* @li @ref Emodel
* @li @ref Eo
* @li @ref Eina
*
* @defgroup Emodel_Eio EIO implementation wrapper for Emodel
*
* @addtogroup Emodel_Eio
* @{
*/
#ifndef _EMODEL_EIO_H
#define _EMODEL_EIO_H
#include <Eo.h>
#include <Efl.h>
#include <Eio.h>
#ifdef __cplusplus
extern "C" {
#endif
#include <eio_model.eo.h>
#ifdef __cplusplus
}
#endif
#endif //_EMODEL_EIO_H
|