Start implementing the tyler map loader.

Untented and incomplete.
This commit is contained in:
King_DuckZ 2015-05-29 00:15:06 +02:00
commit f1a6cac62b
4 changed files with 179 additions and 0 deletions

View file

@ -0,0 +1,21 @@
namespace dkh {
template <typename T, uint32_t D>
TylerMapSource<T, D>::TylerMapSource (const char* parFilename) :
m_stream(new std::ifstream(parFilename))
{
}
template <typename T, uint32_t D>
TylerMapSource<T, D>::TylerMapSource (const std::string& parFilename) :
m_stream(new std::ifstream(parFilename))
{
}
template <typename T, uint32_t D>
TylerMapSource<T, D>::TylerMapSource (std::istream* parData) :
m_stream(parData)
{
}
} //namespace dkh