mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-16 03:38:53 +01:00
18 lines
390 B
C++
18 lines
390 B
C++
/* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.txt', which is part of this source code package.
|
|
*/
|
|
#pragma once
|
|
#include "Item.h"
|
|
#include <vector>
|
|
|
|
class CollectionDatabase;
|
|
|
|
class MenuParser
|
|
{
|
|
public:
|
|
MenuParser();
|
|
virtual ~MenuParser();
|
|
bool GetMenuItems(CollectionDatabase *cdb, std::string collectionName, std::vector<Item *> &items);
|
|
|
|
};
|