CARMA C++
Subarray.h
Go to the documentation of this file.
1 
2 #ifndef CARMA_CONTROL_SUBARRAY_H
3 #define CARMA_CONTROL_SUBARRAY_H
4 
21 namespace carma {
22 namespace control {
23 
24 class Subarray {
25 
26 public:
27  Subarray();
28  virtual ~Subarray();
29  static std::string makeName(const std::string& name, int number);
30 
31 private:
32 
33 };
34 
35 
36 
37 } } // End namespace carma/control
38 
39 
40 #endif // End of conditional include guard
41