Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 927584355c78289d3c0d21de4a769aa19ae3acd9
  • main par défaut protégée
  • dev
  • healthcheck
  • store
  • dockerised
6 résultats

Dockerfile

Blame
  • Syl.hh 457 o
    #ifndef VIVY_SYL_H
    #define VIVY_SYL_H
    
    #include "Char.hh"
    #include <QString>
    #include <QVector>
    #include <QtGlobal>
    
    namespace Vivy::Ass
    {
    class Line;
    
    class Syl {
    private:
        QVector<Char> content;
        quint64 dur{ 0 };
    
    public:
        Line *const parentLine;
    
    public:
        explicit Syl(const Syl &) = default;
        explicit Syl(Line *const, const QString &);
    
        Syl &operator=(const Syl &) = delete;
        ~Syl() noexcept             = default;
    };
    
    }
    
    #endif