diff --git a/libwebm_2008.sln b/libwebm_2008.sln index 9d63c25..dfb9d77 100644 --- a/libwebm_2008.sln +++ b/libwebm_2008.sln @@ -13,6 +13,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sample_muxer", "sample_muxe {7B1F12CA-0724-430B-B61A-1D357C912CBA} = {7B1F12CA-0724-430B-B61A-1D357C912CBA} EndProjectSection EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libwebvtt", "libwebvtt.vcproj", "{9545310B-A6E6-4B42-BB00-655D66B6E3D5}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -31,6 +33,10 @@ Global {B407561F-1F5E-4798-B9C2-81AB09CFBC16}.Debug|Win32.Build.0 = Debug|Win32 {B407561F-1F5E-4798-B9C2-81AB09CFBC16}.Release|Win32.ActiveCfg = Release|Win32 {B407561F-1F5E-4798-B9C2-81AB09CFBC16}.Release|Win32.Build.0 = Release|Win32 + {9545310B-A6E6-4B42-BB00-655D66B6E3D5}.Debug|Win32.ActiveCfg = Debug|Win32 + {9545310B-A6E6-4B42-BB00-655D66B6E3D5}.Debug|Win32.Build.0 = Debug|Win32 + {9545310B-A6E6-4B42-BB00-655D66B6E3D5}.Release|Win32.ActiveCfg = Release|Win32 + {9545310B-A6E6-4B42-BB00-655D66B6E3D5}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/libwebvtt.vcproj b/libwebvtt.vcproj new file mode 100644 index 0000000..df2d5b5 --- /dev/null +++ b/libwebvtt.vcproj @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/webvttparser.cpp b/webvttparser.cpp new file mode 100644 index 0000000..97ba3be --- /dev/null +++ b/webvttparser.cpp @@ -0,0 +1,15 @@ +#include "webvttparser.hpp" + +namespace WebvttParser +{ + +IReader::IReader() +{ +} + +IReader::~IReader() +{ +} + + +} //end namespace WebvttParser diff --git a/webvttparser.hpp b/webvttparser.hpp new file mode 100644 index 0000000..aea6bdf --- /dev/null +++ b/webvttparser.hpp @@ -0,0 +1,22 @@ +#ifndef WEBVTTPARSER_HPP +#define WEBVTTPARSER_HPP + +namespace WebvttParser +{ + +class IReader +{ +protected: + IReader(); + virtual ~IReader(); + +public: + virtual int Read(char& c) = 0; + +}; + + + +} //end namespace WebvttParser + +#endif