mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
22 lines
521 B
C++
22 lines
521 B
C++
#ifndef POLSERVER_SOURCEFILEIDENTIFIER_H
|
|
#define POLSERVER_SOURCEFILEIDENTIFIER_H
|
|
|
|
#include <string>
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
class SourceFileIdentifier
|
|
{
|
|
public:
|
|
SourceFileIdentifier( unsigned index, std::string pathname );
|
|
|
|
const unsigned index;
|
|
const std::string pathname;
|
|
|
|
SourceFileIdentifier( const SourceFileIdentifier& ) = delete;
|
|
SourceFileIdentifier& operator=( const SourceFileIdentifier& ) = delete;
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_SOURCEFILEIDENTIFIER_H
|