Skip to content

Commit

Permalink
add docstring to class Workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Bernard committed Nov 17, 2020
1 parent a7eb4e9 commit 98074c6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/workspace.hh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@
#include "Wire.h" // Arduino library


/* Workspace
*
* This class acts as a container for all of the variables which change
* throughout the flight. This keeps things tidy by keeping them out of
* the top of main.ino. An instance of this class is created at the top
* of main.ino.
*
* Constant variables should be placed in mission_constants.hh.
*/
class Workspace
{
public:
Expand Down

0 comments on commit 98074c6

Please sign in to comment.