2024-11-08 11:13:44 -03:00
|
|
|
#ifndef XNA_PIPELINE_DEFAULT_HPP
|
|
|
|
#define XNA_PIPELINE_DEFAULT_HPP
|
|
|
|
|
|
|
|
#include "xna/default.hpp"
|
|
|
|
|
|
|
|
namespace xna {
|
|
|
|
class ContentTypeWriter;
|
|
|
|
class ContentTypeWriterFactory;
|
2024-11-09 17:33:33 -03:00
|
|
|
class ContentCompiler;
|
|
|
|
class ContentWriter;
|
2024-11-08 11:13:44 -03:00
|
|
|
|
|
|
|
using P_ContentTypeWriter = sptr<ContentTypeWriter>;
|
|
|
|
using P_ContentTypeWriterFactory = sptr<ContentTypeWriterFactory>;
|
2024-11-09 17:33:33 -03:00
|
|
|
using P_ContentCompiler = sptr<ContentCompiler>;
|
|
|
|
using P_ContentWriter = sptr<ContentWriter>;
|
2024-11-08 11:13:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|