engine_fwd.h
来自「Amarok是一款在LINUX或其他类UNIX操作系统中运行的音频播放器软件。 」· C头文件 代码 · 共 27 行
H
27 行
#ifndef ENGINE_FWD_H#define ENGINE_FWD_H/// Used by eg engineobserver.h, and thus we reduce header dependencies on enginebase.hnamespace 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
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?