diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-02-13 19:01:24 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-02-13 19:01:24 +0000 |
| commit | aa46ed3678a61b28b5c067b446afeebd4100abd8 (patch) | |
| tree | 38e3d156c7323245f0c2cb3c35bb99b9ed7c4808 | |
| parent | e42d36cde38a02f8365a617c72c341b907018f80 (diff) | |
| download | enigma2-aa46ed3678a61b28b5c067b446afeebd4100abd8.tar.gz enigma2-aa46ed3678a61b28b5c067b446afeebd4100abd8.zip | |
add explicit constructors
| -rw-r--r-- | lib/service/event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/service/event.h b/lib/service/event.h index f1a307ec..8c214af6 100644 --- a/lib/service/event.h +++ b/lib/service/event.h @@ -22,6 +22,8 @@ DECLARE_REF(eComponentData); std::string m_iso639LanguageCode; std::string m_text; #endif + eComponentData(const eComponentData& d) { *this = d; } + eComponentData() { m_streamContent = m_componentType = m_componentTag = 0; } int getStreamContent(void) const { return m_streamContent; } int getComponentType(void) const { return m_componentType; } int getComponentTag(void) const { return m_componentTag; } |
