mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
251 B
C++
10 lines
251 B
C++
#include "SourceFileIdentifier.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
SourceFileIdentifier::SourceFileIdentifier( unsigned index, std::string pathname )
|
|
: index( index ), pathname( std::move( pathname ) )
|
|
{
|
|
}
|
|
|
|
} // namespace Pol::Bscript::Compiler
|