CEBL  2.1
CEBLViewCLI.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 
26 #ifndef CEBLVIEWCLI_H
27 #define CEBLVIEWCLI_H
28 
29 // STANDARD INCLUDES
30 //for NULL
31 #include <cstdlib>
32 //std headers
33 #include <vector>
34 
35 
36 
37 // CEBL INCLUDES
38 #include "../CEBLView.hpp"
39 #include "../CEBLModel.hpp"
40 
41 
42 
43 class CEBLViewCLI : public CEBLView
44 {
45 private:
46  int ac;
47  char ** av;
48 
49 public:
50  CEBLViewCLI(CEBLModel* model, int ac = 0, char ** av = NULL);
51  ~CEBLViewCLI();
52 
54  void Start();
55 
56 };
57 
58 
59 
60 #endif