mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-23 22:53:52 +00:00
19 lines
362 B
C++
19 lines
362 B
C++
|
#ifndef MWCOMPILER_CONTEXT_H_INCLUDED
|
||
|
#define MWCOMPILER_CONTEXT_H_INCLUDED
|
||
|
|
||
|
#include <components/compiler/context.hpp>
|
||
|
|
||
|
namespace SACompiler
|
||
|
{
|
||
|
class Context : public Compiler::Context
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
virtual bool canDeclareLocals() const;
|
||
|
///< Is the compiler allowed to declare local variables?
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|