Skip to content
Snippets Groups Projects
Select Git revision
  • a9e6f340858df0aaa19b472cb408ec6ced21a178
  • main default protected
  • integrate-tracy
  • convert-cookiecutter
  • expand-documentation
  • enable-security-dashboard
  • fix-clang-tidy
7 results

hello.hpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    hello.hpp 406 B
    // Copyright (C) ASTRON (Netherlands Institute for Radio Astronomy)
    // SPDX-License-Identifier: Apache-2.0
    
    #ifndef CPP_INCLUDE_HELLO_HPP
    #define CPP_INCLUDE_HELLO_HPP
    
    namespace lib {
    
    /** This function greets the user.
     *
     * @code
     * char *buffer = new char[42];
     * int charsAdded = sprintf(buffer, "Include code\n", 8);
     * @endcode
     */
    void Hello();
    
    } // namespace lib
    
    #endif // CPP_INCLUDE_HELLO_HPP