Files
Upsilon/apps/sequence/sequence.h
Émilie Feral 44ce4fb069 [apps/sequence] Add model to the new application folder sequence/
Change-Id: I9880e85770d0895849f7f47c474a2a42b00eb3e1
2017-02-13 17:15:07 +01:00

18 lines
254 B
C++

#ifndef SEQUENCE_SEQUENCE_H
#define SEQUENCE_SEQUENCE_H
#include "../shared/function.h"
namespace Sequence {
class Sequence : public Shared::Function {
public:
using Shared::Function::Function;
private:
char symbol() const override;
};
}
#endif