Utils: Fix missing header file newlines

This commit is contained in:
tt2468 2021-08-26 20:33:06 -07:00
parent ea713ea808
commit 4d8b80a5a7
3 changed files with 3 additions and 3 deletions

View File

@ -14,4 +14,4 @@ namespace Utils {
bool GetJsonFileContent(std::string fileName, json &content); bool GetJsonFileContent(std::string fileName, json &content);
bool SetJsonFileContent(std::string fileName, json content, bool createNew = true); bool SetJsonFileContent(std::string fileName, json content, bool createNew = true);
} }
} }

View File

@ -44,4 +44,4 @@ namespace Utils {
obs_sceneitem_t *CreateInput(std::string inputName, std::string inputKind, obs_data_t *inputSettings, obs_scene_t *scene, bool sceneItemEnabled = true); obs_sceneitem_t *CreateInput(std::string inputName, std::string inputKind, obs_data_t *inputSettings, obs_scene_t *scene, bool sceneItemEnabled = true);
} }
} }
} }

View File

@ -13,4 +13,4 @@ namespace Utils {
bool GetTextFileContent(std::string fileName, std::string &content); bool GetTextFileContent(std::string fileName, std::string &content);
bool SetTextFileContent(std::string filePath, std::string content, bool createNew = true); bool SetTextFileContent(std::string filePath, std::string content, bool createNew = true);
} }
} }