Start implementing the tyler map loader.
Untented and incomplete.
This commit is contained in:
parent
72b400ac0c
commit
f1a6cac62b
4 changed files with 179 additions and 0 deletions
21
include/doorkeeper/implem/tylermapsource.inl
Normal file
21
include/doorkeeper/implem/tylermapsource.inl
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue