1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint c1151a1a67 Added Curve and related classes
Updated comments
Updated List class
2014-03-29 16:17:59 +01:00

52 lines
1.1 KiB
C++

/*****************************************************************************
* Video.h *
* *
* XFX::Media::Video class definition file *
* Copyright (c) XFX Team. All Rights Reserved *
*****************************************************************************/
#ifndef _XFX_MEDIA_VIDEO_H_
#define _XFX_MEDIA_VIDEO_H_
#include <System/TimeSpan.h>
#include "Enums.h"
using namespace System;
namespace XFX
{
namespace Media
{
/**
* Represents a video.
*/
class Video : public Object
{
public:
/**
* Gets the duration of the Video.
*/
TimeSpan getDuration() const;
/**
* Gets the frame rate of this video.
*/
float getFramesPerSecond() const;
/**
* Gets the height of this video, in pixels.
*/
int getHeight() const;
/**
* Gets the VideoSoundtrackType for this video.
*/
VideoSoundtrackType_t getVideoSoundtrackType() const;
/**
* Gets the width of this video, in pixels.
*/
int getWidth() const;
static const Type& GetType();
};
}
}
#endif //_XFX_MEDIA_VIDEO_H_