CEBL  2.1
CEBLView.hpp
Go to the documentation of this file.
1 /*
2 * CEBL : CSU EEG Brain-Computer Interface Lab
3 *
4 * Author: Jeshua Bratman - jeshuabratman@gmail.com
5 *
6 * This file is part of CEBL.
7 *
8 * CEBL is free software; you can redistribute it and/or modify it.
9 * We only ask that if you use our code that you cite the source in
10 * your project or publication.
11 *
12 * EEG Group (www.cs.colostate.edu/eeg)
13 * Department of Computer Science
14 * Colorado State University
15 *
16 */
17 
25 #ifndef CEBLVIEW_H
26 #define CEBLVIEW_H
27 
28 #include "CEBLIncludes.hpp"
29 
30 class CEBLModel;
31 
32 class CEBLView
33 {
34 protected:
36 
37 public:
38  CEBLView(CEBLModel * model) {this->model = model;}
39  virtual ~CEBLView() {}
40 
42  virtual void Start() {};
43 
45  CEBLModel * getModel() { return model; }
46 
47 };
48 
49 #endif