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

Syl.hh

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