#ifndef FFCONV_FFCPP_H #define FFCONV_FFCPP_H #include 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