You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/components/files/istreamptr.hpp

13 lines
210 B
C++

#ifndef OPENMW_COMPONENTS_FILES_ISTREAMPTR_H
#define OPENMW_COMPONENTS_FILES_ISTREAMPTR_H
#include <iosfwd>
#include <memory>
namespace Files
{
using IStreamPtr = std::unique_ptr<std::istream>;
}
#endif