mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
It is now possible to call the value of a defined sequence anywhere. Change-Id: I1990e93c50f9add175b7ea274e07004ba63289e5
14 lines
213 B
C++
14 lines
213 B
C++
#ifndef SHARED_APP_H
|
|
#define SHARED_APP_H
|
|
|
|
#include <escher/app.h>
|
|
|
|
class SharedApp : public App {
|
|
public:
|
|
class Snapshot : public App::Snapshot {
|
|
public:
|
|
void pack(App * app) override;
|
|
};
|
|
};
|
|
|
|
#endif |