add some header file

This commit is contained in:
chenhaijian 2024-07-12 11:30:22 +08:00
parent a5ae3e6be7
commit 18934033ce
5 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,7 @@
#define I_FILES_MANAGER_H
#include "StatusCode.h"
#include <memory>
#include <string>
typedef struct save_file_info
{
save_file_info(const std::string &fileName);

View File

@ -17,6 +17,7 @@
#include "StatusCode.h"
#include <memory>
#include <vector>
#include <string>
bool CreateMediaManagerModule(void);
bool DestroyMediaManagerModule(void);
enum class MediaChannel

View File

@ -16,6 +16,7 @@
#define CONFIG_BASE_IMPL_H
#include "IConfigBase.h"
#include <libconfig.h>
#include <string>
class ConfigBaseImpl : public IConfigBase
{
public:

View File

@ -19,6 +19,7 @@
#include <cstdio>
#include <cstdlib>
#include <memory>
#include <string>
void *ICreateMediaBase(const MediaHandleType type)
{
return NewIMediaBase(type);

View File

@ -16,6 +16,7 @@
#define I_TCP_CLIENT_H
#include "StatusCode.h"
#include <memory>
#include <sys/types.h>
class ITcpClient
{
public: