Merge pull request #5095 from koying/fixdroidappcrash
[vuplus_xbmc] / xbmc / filesystem / UDFDirectory.h
1 #ifndef UDF_DIRECTORY_H
2 #define UDF_DIRECTORY_H
3 /*
4  *      Copyright (C) 2010 Team Boxee
5  *      http://www.boxee.tv
6  *
7  *      Copyright (C) 2010-2013 Team XBMC
8  *      http://xbmc.org
9  *
10  *  This Program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2, or (at your option)
13  *  any later version.
14  *
15  *  This Program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with XBMC; see the file COPYING.  If not, see
22  *  <http://www.gnu.org/licenses/>.
23  *
24  */
25 #include "IFileDirectory.h"
26
27 namespace XFILE
28 {
29 class CUDFDirectory :
30       public IFileDirectory
31 {
32 public:
33   CUDFDirectory(void);
34   virtual ~CUDFDirectory(void);
35   virtual bool GetDirectory(const CStdString& strPath, CFileItemList &items);
36   virtual bool Exists(const char* strPath);
37   virtual bool ContainsFiles(const CStdString& strPath) { return true; }
38 };
39 }
40
41 #endif