aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/playstate.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-03-12 16:43:53 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-03-12 16:43:53 +0000
commitae33fdc0a3898d45896d4670f64e140deb78e35c (patch)
tree5d4fc6174ae957562d50c58890f583f28d1dec78 /src/qmmpui/playstate.h
parent657434a5ec73229ba4211127dce4eef6ff1a8bc9 (diff)
downloadqmmp-ae33fdc0a3898d45896d4670f64e140deb78e35c.tar.gz
qmmp-ae33fdc0a3898d45896d4670f64e140deb78e35c.tar.bz2
qmmp-ae33fdc0a3898d45896d4670f64e140deb78e35c.zip
playlist format api documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@843 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playstate.h')
-rw-r--r--src/qmmpui/playstate.h24
1 files changed, 10 insertions, 14 deletions
diff --git a/src/qmmpui/playstate.h b/src/qmmpui/playstate.h
index e4af7fa6f..a2b525f7d 100644
--- a/src/qmmpui/playstate.h
+++ b/src/qmmpui/playstate.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006 by Ilya Kotov *
+ * Copyright (C) 2007-2009 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -21,14 +21,11 @@
#ifndef _PLAYSTATE_H
#define _PLAYSTATE_H
-/**
- @author Vladimir Kuznetsov <vovanec@gmail.com>
- */
-
#include <playlistmodel.h>
-/*!
- * Abstract class that represents data model playing states
+/*! @internal
+ * @brief Abstract class that represents data model playing states.
+ * @author Vladimir Kuznetsov <vovanec@gmail.com>
*/
class PlayState
{
@@ -50,7 +47,6 @@ public:
{
;
};
-
/*!
* Service method, can be used for state initializing.
*/
@@ -72,9 +68,9 @@ protected:
PlayListModel* m_model;
};
-/*!
- * Represents normal playing state.
- * @author Vladimir Kuznetsov <vovanec@gmail.com>
+/*! @internal
+ * @brief Represents normal playing state.
+ * @author Vladimir Kuznetsov <vovanec@gmail.com>
*/
class NormalPlayState : public PlayState
{
@@ -84,9 +80,9 @@ public:
NormalPlayState(PlayListModel* model);
};
-/*!
- * Represents shuffle playing state.
- * @author Vladimir Kuznetsov <vovanec@gmail.com>
+/*! @internal
+ * @brief Represents shuffle playing state.
+ * @author Vladimir Kuznetsov <vovanec@gmail.com>
*/
class ShufflePlayState : public PlayState
{