Sélectionner une révision Git
RedirectIfAuthenticated.php
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;
};
}