summaryrefslogtreecommitdiffstats
path: root/amarok/src/engine_fwd.h
blob: 30068a8ba502a70f99f10bc8b0d16b83180be4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#ifndef ENGINE_FWD_H
#define ENGINE_FWD_H

/// Used by eg engineobserver.h, and thus we reduce header dependencies on enginebase.h

namespace Engine
{
    class SimpleMetaBundle;
    class Base;

    /**
     * You should return:
     * Playing when playing,
     * Paused when paused
     * Idle when you still have a URL loaded (ie you have not been told to stop())
     * Empty when you have been told to stop(), or an error occurred and you stopped yourself
     *
     * It is vital to be Idle just after the track has ended!
     */
    enum State { Empty, Idle, Playing, Paused };
}

typedef Engine::Base EngineBase;

#endif