1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint b0dd58a08b Added file comments and TypeInfos
Added some implementations
Added auto_ptr and gc_ptr for easier memory management
2013-08-20 11:14:55 +02:00

37 lines
824 B
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:
TimeSpan getDuration() const;
float getFramesPerSecond() const;
int getHeight() const;
VideoSoundtrackType_t getVideoSoundtrackType() const;
int getWidth() const;
static const Type& GetType();
};
}
}
#endif //_XFX_MEDIA_VIDEO_H_