mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
21 lines
471 B
C++
21 lines
471 B
C++
#ifndef APPS_CONTAINER_STORAGE_H
|
|
#define APPS_CONTAINER_STORAGE_H
|
|
|
|
#include "apps_container.h"
|
|
|
|
#ifndef APPS_CONTAINER_SNAPSHOT_DECLARATIONS
|
|
#error Missing snapshot declarations
|
|
#endif
|
|
|
|
class AppsContainerStorage : public AppsContainer {
|
|
public:
|
|
static AppsContainerStorage * sharedContainer();
|
|
AppsContainerStorage();
|
|
int numberOfApps() override;
|
|
App::Snapshot * appSnapshotAtIndex(int index) override;
|
|
private:
|
|
APPS_CONTAINER_SNAPSHOT_DECLARATIONS
|
|
};
|
|
|
|
#endif
|