pfodParser  3.61.0
The pfodParser library is handles commands sent from the Android pfodApp, pfodApp supports WiFi, BLE, Bluetooth and SMS connections
pfodDrawing.h
Go to the documentation of this file.
1 #ifndef PFOD_DRAWING_H
2 #define PFOD_DRAWING_H
3 /*
4  pfodDrawing.h
5  (c)2022 Forward Computing and Control Pty. Ltd.
6  NSW Australia, www.forward.com.au
7  This code is not warranted to be fit for any purpose. You may only use it at your own risk.
8  This code may be freely used for both private and commercial use
9  Provide this copyright is maintained.
10 */
11 #include "pfodParser.h"
12 #include "pfodDwgs.h"
13 
14 class pfodParser;
15 class pfodDwgs;
16 
17 class pfodDrawing : public pfodAutoCmd {
18  public:
20 
21  virtual bool sendDwg(); // returns is dwg sent else false i.e. not this dwg's loadCmd
22  virtual bool processDwgCmds(); // return true if handled else false
23  protected:
26  };
27 
28 #endif
virtual bool sendDwg()
pfodDwgs * dwgsPtr
Definition: pfodDrawing.h:25
pfodDrawing(pfodParser *parserPtr, pfodDwgs *dwgsPtr)
pfodParser * parserPtr
Definition: pfodDrawing.h:24
virtual bool processDwgCmds()