summaryrefslogtreecommitdiff
path: root/avmedia/source/win/player.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'avmedia/source/win/player.hxx')
-rw-r--r--avmedia/source/win/player.hxx40
1 files changed, 20 insertions, 20 deletions
diff --git a/avmedia/source/win/player.hxx b/avmedia/source/win/player.hxx
index 2923d0ded939..425ae00dada3 100644
--- a/avmedia/source/win/player.hxx
+++ b/avmedia/source/win/player.hxx
@@ -56,7 +56,7 @@ class Player : public cppu::BaseMutex,
public:
explicit Player( const css::uno::Reference< css::lang::XMultiServiceFactory >& rxMgr );
- ~Player();
+ ~Player() override;
bool create( const OUString& rURL );
@@ -66,29 +66,29 @@ public:
const IVideoWindow* getVideoWindow() const;
// XPlayer
- virtual void SAL_CALL start( ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL stop( ) throw (css::uno::RuntimeException);
- virtual sal_Bool SAL_CALL isPlaying( ) throw (css::uno::RuntimeException);
- virtual double SAL_CALL getDuration( ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL setMediaTime( double fTime ) throw (css::uno::RuntimeException);
- virtual double SAL_CALL getMediaTime( ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL setPlaybackLoop( sal_Bool bSet ) throw (css::uno::RuntimeException);
- virtual sal_Bool SAL_CALL isPlaybackLoop( ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL setMute( sal_Bool bSet ) throw (css::uno::RuntimeException);
- virtual sal_Bool SAL_CALL isMute( ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL setVolumeDB( sal_Int16 nVolumeDB ) throw (css::uno::RuntimeException);
- virtual sal_Int16 SAL_CALL getVolumeDB( ) throw (css::uno::RuntimeException);
- virtual css::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) throw (css::uno::RuntimeException);
- virtual css::uno::Reference< css::media::XPlayerWindow > SAL_CALL createPlayerWindow( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::RuntimeException);
- virtual css::uno::Reference< css::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) throw (css::uno::RuntimeException);
+ virtual void SAL_CALL start( ) throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL stop( ) throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL isPlaying( ) throw (css::uno::RuntimeException) override;
+ virtual double SAL_CALL getDuration( ) throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL setMediaTime( double fTime ) throw (css::uno::RuntimeException) override;
+ virtual double SAL_CALL getMediaTime( ) throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL setPlaybackLoop( sal_Bool bSet ) throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL isPlaybackLoop( ) throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL setMute( sal_Bool bSet ) throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL isMute( ) throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL setVolumeDB( sal_Int16 nVolumeDB ) throw (css::uno::RuntimeException) override;
+ virtual sal_Int16 SAL_CALL getVolumeDB( ) throw (css::uno::RuntimeException) override;
+ virtual css::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) throw (css::uno::RuntimeException) override;
+ virtual css::uno::Reference< css::media::XPlayerWindow > SAL_CALL createPlayerWindow( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::RuntimeException) override;
+ virtual css::uno::Reference< css::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) throw (css::uno::RuntimeException) override;
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName( ) throw (css::uno::RuntimeException);
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (css::uno::RuntimeException);
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getImplementationName( ) throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (css::uno::RuntimeException) override;
+ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (css::uno::RuntimeException) override;
// ::cppu::OComponentHelper
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() override;
private: