ocarina/core/core.cpp
Anna Schumaker c7fe5b18d5 tagdb: Rip out most tagdb functions
Most of this are a straight replacement with the new versions in
tags/track.cpp.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-12-04 08:31:52 -05:00

21 lines
370 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(int *argc, char ***argv)
{
tags :: init();
library :: init();
playlist :: init();
deck :: init();
audio :: init(argc, argv);
}