Blame view

build3/apps/code/script_template.h 657 Bytes
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
21
22
23
24
  #ifndef CODE_SCRIPT_TEMPLATE_H
  #define CODE_SCRIPT_TEMPLATE_H
  
  namespace Code {
  
  class ScriptTemplate {
  public:
    constexpr ScriptTemplate(const char * name, const char * content) : m_name(name), m_content(content) {}
    static const ScriptTemplate * Empty();
    static const ScriptTemplate * Factorial();
    static const ScriptTemplate * Fibonacci();
    static const ScriptTemplate * Mandelbrot();
    static const ScriptTemplate * Polynomial();
    static const ScriptTemplate * UartChat();
    const char * name() const { return m_name; }
    const char * content() const { return m_content; }
  private:
    const char * m_name;
    const char * m_content;
  };
  
  }
  
  #endif