24 lines
386 B
C++
24 lines
386 B
C++
#ifndef FFCONV_FFCPP_H
|
|
#define FFCONV_FFCPP_H
|
|
|
|
#include <string>
|
|
|
|
namespace ffcpp {
|
|
|
|
void init();
|
|
void throwIfError(int result, const std::string& description);
|
|
|
|
class non_copyable
|
|
{
|
|
protected:
|
|
non_copyable() = default;
|
|
~non_copyable() = default;
|
|
|
|
non_copyable(non_copyable const &) = delete;
|
|
void operator=(non_copyable const &x) = delete;
|
|
};
|
|
|
|
}
|
|
|
|
#endif //FFCONV_FFCPP_H
|