comparison 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
comparison
equal deleted inserted replaced
419:f3b5d8aebd17 420:580f696c817c
1 #ifndef ACCUMULATORS_H
2 #define ACCUMULATORS_H
3
4 #include <string>
5 #include <set>
6 #include <queue>
7 #include <map>
8 #include <functional>
9
10 #include "audioDB.h"
11 extern "C" {
12 #include "audioDB_API.h"
13 }
14 #include "audioDB-internals.h"
15
16 #include "accumulator.h"
17 #include "dbaccumulator.h"
18 #include "pertrackaccumulator.h"
19 #include "nearestaccumulator.h"
20
21 #endif