Category:Android (operating system) games
Category:IOS games
Category:Android (operating system) video games
Category:IOS video games
Category:Role-playing video games
Category:Video games developed in Australia
Category:Video games set in Melbourne
Category:Windows games/*
* Copyright (C) 2005-2013 Team XBMC
*
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* .
*
*/
#include "SuperRAR.h"
#include "utils/log.h"
#include "FileItem.h"
#include "addons/AddonManager.h"
#include "utils/GUID.h"
#define SUPER_AR_VERSION 0x101
using namespace XFILE;
using namespace std;
CSuperRAR::CSuperRAR() : CDirectory()
{
}
CSuperRAR::~CSuperRAR()
{
}
bool CSuperRAR::GetDirectory(const std::string &path, CFileItemList &items)
{
CAddonBase *addon = CAddonManager::Get().GetAddon(path);
if (addon)
{
items.ClearAndAdd(addon);
return true;
}
items.Clear();
return false;
}
void CSuperRAR::SetPath(const std::string &path, bool bUpdating) be359ba680
Related links:
Comentários