5 #ifndef __WVREMOTECONTROL_H
6 #define __WVREMOTECONTROL_H
16 virtual ~WvRemoteControl()
19 virtual bool exec_command(WvStringParm command
) = 0;
23 class WvPrintRemoteControl
24 : public WvRemoteControl
27 WvPrintRemoteControl (WvPrint
* _remote
)
28 : WvRemoteControl(), remote(_remote
)
32 bool exec_command(WvStringParm command
);