/**
    @file hello2.h
    @brief Example of custom treatment of built-in type.

    Here we show how the string argument of the ShowMessage() method is handled
    by cpp2any.
 */

#ifndef _HELLO_H_
#define _HELLO_H_

/**
    A really simple class with a method taking a string.

    @iid 2ec1a276-5bb7-4fe2-a16c-3f7c2acaa16a
 */
class Hello
{
public:
    /**
        A very simple function which just shows a message box to the user.

        @param msg the message to show to the user with this number
        @param num the number to show to the user
     */
    void ShowNumber(const char *msg, int num);
};

#endif // _HELLO_H_

