CTRE Phoenix C++ 5.35.1
Loading...
Searching...
No Matches
IProcessable.h
Go to the documentation of this file.
1/* Copyright (C) Cross The Road Electronics 2024 */
2#pragma once
3namespace ctre { namespace phoenix { namespace tasking{
4
5/**
6 * Interface for processable objects
7 */
9public:
10 virtual ~IProcessable(){}
11 /**
12 * This function is called when a process occurs
13 */
14 virtual void Process() = 0;
15};
16}}}
Interface for processable objects.
Definition IProcessable.h:8
virtual ~IProcessable()
Definition IProcessable.h:10
virtual void Process()=0
This function is called when a process occurs.
WPI Compliant CANcoder class.
Definition CANCoderStatusFrame.h:4