17 lines
295 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "PublicDefine.h"
/**
* @brief FastDDS代码生成类用于根据IDL文件生成FastDDS代码
*/
class FastDDSGen
{
public:
/**
* @brief 生成FastDDS代码
* @return 是否生成成功
*/
static bool generateFastDDSCode(std::string idlFilePath);
};