6663b6c9
adorian
projet complet av...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|