mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-25 21:59:15 +01:00
13 lines
112 B
C++
13 lines
112 B
C++
#ifndef DATA_H
|
|
#define DATA_H
|
|
|
|
|
|
|
|
class mydata
|
|
{
|
|
public:
|
|
mydata();
|
|
int getMyData();
|
|
};
|
|
|
|
#endif // DATA_H
|