aboutsummaryrefslogtreecommitdiff
path: root/Source/Utils/Logo/GetLogo.H
blob: 6ac12af83f33d396d329421a8dd8cf549b0ce810 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef WARPX_GET_LOGO_H_
#define WARPX_GET_LOGO_H_

#include <string>

namespace utils::logo
{
        /**
         * \brief provides an ASCII art logo for WarpX
         *
         * \return a string containing an ASCII art logo
         */
        std::string get_logo () noexcept;
} // namespace utils::logo

#endif