2025-02-22 16:11:34 +01:00
|
|
|
// myDynamicLibrary.h
|
|
|
|
|
|
|
|
#ifndef MYDYNAMICLIBRARY_H
|
|
|
|
#define MYDYNAMICLIBRARY_H
|
2025-02-22 18:38:16 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
2025-02-22 16:11:34 +01:00
|
|
|
|
|
|
|
class myDynamicLibrary{
|
|
|
|
public:
|
|
|
|
int a;
|
|
|
|
int b;
|
|
|
|
|
2025-02-22 18:38:16 +01:00
|
|
|
std::string text();
|
|
|
|
std::string sayHelloDynamic();
|
2025-02-22 16:11:34 +01:00
|
|
|
int multiply();
|
|
|
|
int devide();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // MYDYNAMICLIBRARY_H
|