24 lines
509 B
C
24 lines
509 B
C
//
|
|
// Academic License - for use in teaching, academic research, and meeting
|
|
// course requirements at degree granting institutions only. Not for
|
|
// government, commercial, or other organizational use.
|
|
//
|
|
// controller.h
|
|
//
|
|
// Code generation for function 'controller'
|
|
//
|
|
|
|
#ifndef CONTROLLER_H
|
|
#define CONTROLLER_H
|
|
|
|
// Include files
|
|
#include "rtwtypes.h"
|
|
#include <cstddef>
|
|
#include <cstdlib>
|
|
|
|
// Function Declarations
|
|
extern void controller(int numClients);
|
|
|
|
#endif
|
|
// End of code generation (controller.h)
|