prime/include/Kyoto/Text/CPopStateInstruction.hpp

17 lines
401 B
C++
Raw Normal View History

2023-01-11 19:08:11 +00:00
#ifndef _CPOPSTATEINSTRUCTION
#define _CPOPSTATEINSTRUCTION
#include "Kyoto/Text/CInstruction.hpp"
class CPopStateInstruction : public CInstruction {
public:
CPopStateInstruction() {}
~CPopStateInstruction() {}
void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
};
#endif // _CPOPSTATEINSTRUCTION