Mercurial > hg > audiodb
diff accumulators.h @ 420:580f696c817c api-inversion
Split up accumulator.h into multiple files
One benefit is the sanity-preserving side-effect of only one class per
file; the main reason, though, is so that we can include accumulator.h
(the abstract base class) in more than one project file.
author | mas01cr |
---|---|
date | Wed, 24 Dec 2008 10:54:55 +0000 |
parents | |
children | 166312a124bc |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/accumulators.h Wed Dec 24 10:54:55 2008 +0000 @@ -0,0 +1,21 @@ +#ifndef ACCUMULATORS_H +#define ACCUMULATORS_H + +#include <string> +#include <set> +#include <queue> +#include <map> +#include <functional> + +#include "audioDB.h" +extern "C" { +#include "audioDB_API.h" +} +#include "audioDB-internals.h" + +#include "accumulator.h" +#include "dbaccumulator.h" +#include "pertrackaccumulator.h" +#include "nearestaccumulator.h" + +#endif