summaryrefslogtreecommitdiff
path: root/src/player/Timeout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player/Timeout.h')
-rw-r--r--src/player/Timeout.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/player/Timeout.h b/src/player/Timeout.h
new file mode 100644
index 0000000..9682d76
--- /dev/null
+++ b/src/player/Timeout.h
@@ -0,0 +1,54 @@
+//
+// libavg - Media Playback Engine.
+// Copyright (C) 2003-2014 Ulrich von Zadow
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// Current versions can be found at www.libavg.de
+//
+
+#ifndef _Timeout_H_
+#define _Timeout_H_
+
+// Python docs say python.h should be included before any standard headers (!)
+#include "WrapPython.h"
+#include "../api.h"
+
+namespace avg {
+
+class AVG_API Timeout
+{
+ public:
+ Timeout (int time, PyObject * pyfunc, bool isInterval, long long startTime);
+ virtual ~Timeout ();
+
+ bool isReady(long long time) const;
+ bool isInterval() const;
+ void fire(long long curTime);
+ int getID() const;
+ bool operator <(const Timeout& other) const;
+
+ private:
+ long long m_Interval;
+ long long m_NextTimeout;
+ PyObject * m_PyFunc;
+ bool m_IsInterval;
+ int m_ID;
+ static int s_LastID;
+};
+
+}
+
+#endif //_Timeout_H_