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