mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
25 lines
433 B
C++
25 lines
433 B
C++
#ifndef XNA_PIPELINE_SERIALIZER_HPP
|
|
#define XNA_PIPELINE_SERIALIZER_HPP
|
|
|
|
#include <string>
|
|
#include "xna/csharp/xml.hpp"
|
|
|
|
namespace xna {
|
|
class ContentTypeSerializer {
|
|
|
|
};
|
|
|
|
struct ISerialization {
|
|
virtual void Serialize(ContentTypeSerializer& serializer) = 0;
|
|
};
|
|
|
|
class IntermediateSerializer {
|
|
public:
|
|
template <typename T>
|
|
static T Deserialize(XmlReader& input, std::string referenceRelocationPath) {
|
|
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif |