wx-compiler/src/wxml/name_allocator.cpp
2023-06-13 21:34:46 +08:00

26 lines
538 B
C++

#include "../include/wxml.h"
namespace WXML {
int NameAllocator::ALPAHBETLEN = 0;
NameAllocator::NameAllocator(std::string const& a2,std::string const&a3)
{
if (NameAllocator::ALPAHBETLEN == 0)
{
NameAllocator::ALPAHBETLEN = NameAllocator::ALPAHBET.size();
}
this->offset_1.assign(a2);
this->offset_7.assign(a3);
}
/**
* TODO:
*/
void NameAllocator::GetNextName(std::string & a2)
{
}
NameAllocator::~NameAllocator()
{
}
}