diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-31 00:23:01 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-31 00:23:01 +0000 |
| commit | 85f2616ef78700cf2639992abaf1011ecaa897bd (patch) | |
| tree | 86b10403cdb942ec5a4a168a7012fe3ac859a703 /lib/service/service.h | |
| parent | 39862e4439df37f150796d3d99352b8859de0736 (diff) | |
| download | enigma2-85f2616ef78700cf2639992abaf1011ecaa897bd.tar.gz enigma2-85f2616ef78700cf2639992abaf1011ecaa897bd.zip | |
make many constructors and destructors invisible for python
Diffstat (limited to 'lib/service/service.h')
| -rw-r--r-- | lib/service/service.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/service/service.h b/lib/service/service.h index 17614c2f..813da24c 100644 --- a/lib/service/service.h +++ b/lib/service/service.h @@ -15,10 +15,15 @@ DECLARE_REF(eServiceCenter); private: std::map<int,iServiceHandlerPtr> handler; static eServiceCenter *instance; +#ifdef SWIG + eServiceCenter(); + ~eServiceCenter(); +#endif public: +#ifndef SWIG eServiceCenter(); virtual ~eServiceCenter(); - +#endif // iServiceHandler RESULT play(const eServiceReference &, iPlayableServicePtr &ptr); RESULT record(const eServiceReference &, iRecordableServicePtr &ptr); |
