mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
26 lines
538 B
C++
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()
|
|
{
|
|
}
|
|
|
|
} |