Eo
Date
2012 (created)

Table of Contents

Introduction

The Eo generic object system. It was designed to be the base object system for the EFL.

How to compile

Eo is a library your application links to. The procedure for this is very simple. You simply have to compile your application with the appropriate compiler flags that the pkg-config script outputs. For example:

Compiling C or C++ files into object files:

gcc -c -o main.o main.c `pkg-config --cflags eo`

Linking object files into a binary executable:

gcc -o my_application main.o `pkg-config --libs eo`

See pkgconfig

Next Steps

After you understood what Eo is and installed it in your system you should proceed understanding the programming interface.

Recommended reading:

  • Eo_Class_Base
  • Eo_Class
  • Eo_Events
  • Eo_Composite_Objects

Introductory Example

Eo Tutorial