21 lines
341 B
C
21 lines
341 B
C
|
// deployer Module header
|
||
|
// Copyright (C) 2024 Jean-Cloud
|
||
|
// GNU General Public License v3
|
||
|
|
||
|
#if !defined(MODULE_H)
|
||
|
#define MODULE_H
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
class Module
|
||
|
{
|
||
|
protected:
|
||
|
Module(char * serv);
|
||
|
virtual ~Module();
|
||
|
|
||
|
private:
|
||
|
bool activated; //true if the service requires this module
|
||
|
char * service;
|
||
|
|
||
|
};
|
||
|
#endif
|