μHAL (v2.6.5)
Part of the IPbus software repository
logo.hpp
Go to the documentation of this file.
1 #ifndef _uhal_logo_hpp_
2 #define _uhal_logo_hpp_
3 
4 namespace uhal
5 {
6 
11  class logo
12  {
13  public:
17  logo();
21  ~logo();
22 
27  void operator++ ( int aDummy );
28 
29  private:
31  const char* mPtr;
33  static const char* const mLogoStr;
34  };
35 
36 }
37 #endif
static const char *const mLogoStr
The raw message encoding the "Imperial College London" logo in ASCII.
Definition: logo.hpp:33
void operator++(int aDummy)
Print the next character in the logo.
Definition: logo.cpp:15
Fun class to print the "Imperial College London" logo one character at a time (A more interesting to ...
Definition: logo.hpp:11
~logo()
Destructor.
Definition: logo.cpp:10
logo()
Constructor.
Definition: logo.cpp:8
const char * mPtr
The next character to print.
Definition: logo.hpp:31