libflo_std 0.1.0

Provides an easy way to include libflo in a project.
Documentation
extern crate libflo;

extern crate libflo_error;

extern crate libflo_event;

extern crate libflo_func;

extern crate libflo_module;

extern crate libflo_type;


pub mod error {
    pub use libflo_error::*;
}

pub mod event {
    pub use libflo_event::*;
}

pub mod func {
    pub use libflo_func::*;
}

pub mod module {
    pub use libflo_module::*;
}

pub mod serialization {
    pub use libflo_func::serialization::FuncMapperSerde;

    pub use libflo_module::serialization::ModuleMapperSerde;
}

pub use error::{ Result, WrapErr, WrapError };

pub use event::{ Event, EventMapper };

pub use func::{ Func, FuncMapper, Input, Output, Parameter };

pub use libflo::{ ExtEventMapper, ExtFuncMapper, Libflo };

pub use libflo_type::ConstructInput;

pub use module::{ ModuleMapper, PathResolver };