1 /*  Copyright (c) MediaArea.net SARL. All Rights Reserved.
2  *
3  *  Use of this source code is governed by a BSD-style license that can
4  *  be found in the License.html file in the root of the source tree.
5  */
6 
7 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8 //
9 // Give information about a lot of media files
10 // Dispatch the file to be tested by all containers
11 //
12 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
13 
14 //---------------------------------------------------------------------------
15 #ifndef Reader_libmmsH
16 #define Reader_libmmsH
17 //---------------------------------------------------------------------------
18 
19 //---------------------------------------------------------------------------
20 #include "MediaInfo/Reader/Reader__Base.h"
21 //---------------------------------------------------------------------------
22 
23 namespace MediaInfoLib
24 {
25 
26 //***************************************************************************
27 /// @brief Reader_libmms
28 //***************************************************************************
29 
30 class Reader_libmms : public Reader__Base
31 {
32 public :
33     //Constructor/Destructor
~Reader_libmms()34     virtual ~Reader_libmms() {}
35 
36     //Format testing
37     size_t Format_Test(MediaInfo_Internal* MI, String File_Name);
38 };
39 
40 } //NameSpace
41 #endif
42