Source code for elos/clientmanager/clientmanager_types.h
// SPDX-License-Identifier: MIT
#pragma once
#include <samconf/samconf_types.h>
#include "elos/pluginmanager/types.h"
[docs][docs]/*******************************************************************
* Initialization parameters for a new client manager component
*
* Members:
* pluginManager: plugin manager where client plugins are stored and managed
* config: elos configuration variables
******************************************************************/
typedef struct elosClientManagerParam {
} elosClientManagerParam_t;
[docs][docs]/*******************************************************************
* Data structure of a ClientManager
*
* Members:
* pluginManager: component to manage client plugins
* config: configuration variables for elos
* searchPath: string for the plugin manager to start search from
* pluginControlPtrVector: Plugin Control vector to load client plugins on to
******************************************************************/
typedef struct elosClientManager {
[docs][docs] elosPluginControlPtrVector_t pluginControlPtrVector;
} elosClientManager_t;