summaryrefslogtreecommitdiff
path: root/src/examples/eo/simple/simple_simple.h
blob: 845a1f1a1d3c42117fc921f9c6390854975decb5 (plain)
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
#ifndef SIMPLE_H
#define SIMPLE_H

#include "Eo.h"
#include "simple_interface.h"
#include "simple_mixin.h"

/**
 * @def simple_a_set(a)
 * @brief Set value to a-property
 * @param[in] a integer value to set
 */
EAPI void simple_a_set(int a);

/**
 * @def simple_a_get(a)
 * @brief Get value of a-property
 * @param[out] integer pointer to a-value
 */
EAPI int simple_a_get(void);

#define SIMPLE_CLASS simple_class_get()
const Eo_Class *simple_class_get(void);

#endif