mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
18 lines
254 B
C++
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
|