CTRE Phoenix C++ 5.33.1
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.
namespace ctre
Definition: paramEnum.h:5