17 lines
366 B
C++
17 lines
366 B
C++
#ifndef SSABLIB_H
|
|
#define SSABLIB_H
|
|
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
//generazione del file client con i requisiti hw
|
|
bool generaFileClient(const char* nome, const char* prodotto);
|
|
|
|
//generazione del file di licenze (file_client + file_moduli)
|
|
bool generaLicenze();
|
|
|
|
//utility per vedere in chiaro un file di licenze
|
|
string decrypt(string fileName);
|
|
|
|
#endif
|