HEAD: someone (maybe me) had introduced buggy pathname stripping in
[wvapps.git] / wvprint / wvremotecontrol.h
blob44b9cb4e9c1a8501ec83617a7b5755d3802e7e9c
5 #ifndef __WVREMOTECONTROL_H
6 #define __WVREMOTECONTROL_H
9 #include <wvstring.h>
11 class WvPrint;
13 class WvRemoteControl
15 public:
16 virtual ~WvRemoteControl()
17 {};
19 virtual bool exec_command(WvStringParm command) = 0;
23 class WvPrintRemoteControl
24 : public WvRemoteControl
26 public:
27 WvPrintRemoteControl (WvPrint * _remote)
28 : WvRemoteControl(), remote(_remote)
32 bool exec_command(WvStringParm command);
33 private:
34 WvPrint *remote;
37 #endif