You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.2 KiB
C

/**
*
* @file FITKMessage.h
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-03-18
*
*/
#ifndef ___FITKMESSAGE_H___
#define ___FITKMESSAGE_H___
#include "FITKAppFrameworkAPI.h"
namespace AppFrame
{
/**
* @brief
* @param[i] message
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-03-18
*/
void FITKAppFrameworkAPI FITKMessageNormal(const QString& message);
/**
* @brief
* @param[i] message
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-03-18
*/
void FITKAppFrameworkAPI FITKMessageWarning(const QString& message);
/**
* @brief
* @param[i] message
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-03-18
*/
void FITKAppFrameworkAPI FITKMessageError(const QString& message);
/**
* @brief
* @param[i] message
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-03-18
*/
void FITKAppFrameworkAPI FITKMessageInfo(const QString& message);
}
#endif