2023 Charge Up  0.1.0
Code for the Titanium Titans (FRC Team #4467)'s 2023 robot
example.hpp
1 #pragma once
2 #include <string>
3 
4 namespace MyLibrary {
5 
6 enum Color { red, green, blue };
7 
14 class Example {
15 public:
131  std::string test(const std::string& test);
132 
133  virtual int virtualfunc() = 0;
134 
135  static bool staticfunc();
136 
137 
138 };
139 
140 }
141 
Example class to demonstrate the features of the custom CSS.
Definition: example.hpp:14
std::string test(const std::string &test)
brief summary