ocarina/core/core.cpp
Anna Schumaker ffa5e65ba7 core/tags/library: Convert Library class to a struct
I also have to replace the "library" namespace with the "collection"
namespace to avoid naming collisions.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2015-12-10 16:41:33 -05:00

22 lines
371 B
C++

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