1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
use super::db::*;

#[cfg(test)] mod tests;

mod data;
mod anim;

pub use self::data::*;
pub use self::anim::*;

///
/// Animation that uses a SQLite database as a backing store
/// 
pub struct SqliteAnimation {
    /// The database for this animation
    db: AnimationDb
}