discoverpixy
interpreter.hpp
1 //
2 // begin license header
3 //
4 // This file is part of Pixy CMUcam5 or "Pixy" for short
5 //
6 // All Pixy source code is provided under the terms of the
7 // GNU General Public License v2 (http://www.gnu.org/licenses/gpl-2.0.html).
8 // Those wishing to use Pixy source code, software and/or
9 // technologies under different licensing terms should contact us at
10 // cmucam@cs.cmu.edu. Such licensing terms are available for
11 // all portions of the Pixy codebase presented here.
12 //
13 // end license header
14 //
15 
16 #ifndef __INTERPRETER_HPP__
17 #define __INTERPRETER_HPP__
18 
19 class Interpreter
20 {
21  public:
22 
23  virtual void interpret_data(const void *data []) = 0;
24 };
25 
26 #endif
Definition: interpreter.hpp:19