1 #ifndef YOBAPERL_VARIABLE_HPP 2 #define YOBAPERL_VARIABLE_HPP 4 #include "yobaperl/common.hpp" 64 virtual std::string toString()
const = 0;
70 void setReadOnly(
bool state);
76 bool isReadOnly()
const;
82 Perl & getPerl()
const;
110 SV * detachMortalSV();
116 U32 getRefcount()
const;
122 void increaseRefcount();
128 void decreaseRefcount();
146 bool operator== (
const Variable & other);
147 bool operator!= (
const Variable & other);
155 friend std::ostream & operator<< (std::ostream & stream,
const Variable & var);
163 PerlInterpreter * _interpreter =
nullptr;
171 #endif // YOBAPERL_VARIABLE_HPP
Base class for perl variables.