startgit

Static page generator for git repositories
git clone git://git.dimitrijedobrota.com/startgit.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING

tag.cpp (265B)


0 #include "tag.hpp" 1 2 #include "utils.hpp" 3 4 namespace startgit 5 { 6 7 tag::tag(const git2wrap::tag& tagg) 8 : m_name(tagg.get_name()) 9 , m_author(tagg.get_tagger().get_name()) 10 , m_time(time_short(tagg.get_tagger().get_time().time)) 11 { 12 } 13 14 } // namespace startgit