Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 6bfe59735555d708b045e11f73bc1a54a35bba61
  • master par défaut
  • script
  • new-devel
  • devel
  • timingView-edit
  • fix-mpv
7 résultats

VivyCli.hh

Blame
  • VivyCli.hh 325 o
    #pragma once
    
    #ifndef __cplusplus
    #error "This is a C++ header"
    #endif
    
    #include "Lib/Script/ScriptStore.hh"
    
    namespace Vivy
    {
    class VivyCli final {
        ScriptStore scriptStore{};
        std::shared_ptr<ScriptDocument> selectedDoc{ nullptr };
    
    public:
        VivyCli(int &argc, char **argv) noexcept;
        int exec() noexcept;
    };
    }