12 lines
297 B
C++
12 lines
297 B
C++
/// \file stream.h
|
|
/// Utilities for handling streams.
|
|
|
|
#pragma once
|
|
#include <string>
|
|
#include "socket.h"
|
|
|
|
namespace Util {
|
|
std::string getTmpFolder();
|
|
void sanitizeName(std::string & streamname);
|
|
bool startInput(std::string streamname, std::string filename = "", bool forkFirst = true);
|
|
}
|