ocarina/core/core.cpp
Anna Schumaker fd2a251c14 audio: Initialize GST from the gui layer
This means I no longer need to pass argc and argv parameters to core/,
so I can eventually work towards removing the Driver :: init() function.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-12-20 10:16:44 -05:00

21 lines
337 B
C++

/**
* @file
* Copyright 2014 (c) Anna Schumaker.
*/
#include <core/audio.h>
#include <core/core.h>
#include <core/deck.h>
#include <core/library.h>
#include <core/playlist.h>
#include <core/tags/tags.h>
void core :: init()
{
tags :: init();
library :: init();
playlist :: init();
deck :: init();
audio :: init();
}