prime/include/Kyoto/Text/CPopStateInstruction.hpp
Phillip Stephens 2bd5aa55f8 More text implementations
Former-commit-id: 4b664aaf36bddf6835223a50eb45a7bca3795509
2023-01-11 11:08:11 -08:00

17 lines
401 B
C++

#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