18 lines
257 B
C
18 lines
257 B
C
![]() |
// myDynamicLibrary.h
|
||
|
|
||
|
#ifndef MYDYNAMICLIBRARY_H
|
||
|
#define MYDYNAMICLIBRARY_H
|
||
|
|
||
|
class myDynamicLibrary{
|
||
|
public:
|
||
|
int a;
|
||
|
int b;
|
||
|
|
||
|
void sayHelloDynamic();
|
||
|
int multiply();
|
||
|
int devide();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // MYDYNAMICLIBRARY_H
|