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

17 lines
407 B
C++

#ifndef _CPUSHSTATEINSTRUCTION
#define _CPUSHSTATEINSTRUCTION
#include "Kyoto/Text/CInstruction.hpp"
class CPushStateInstruction : public CInstruction {
public:
CPushStateInstruction() {}
~CPushStateInstruction() {}
void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
};
#endif // _CPUSHSTATEINSTRUCTION