Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • a4a6dd66e7244d70c86a96c88a26903a29d0a0f4
  • master par défaut protégée
  • alves
3 résultats

RedirectIfAuthenticated.php

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;
    };
    }