14 lines
189 B
C++
14 lines
189 B
C++
#ifndef PIMONITOR_H
|
|
#define PIMONITOR_H
|
|
|
|
class PIMonitor
|
|
{
|
|
public:
|
|
PIMonitor();
|
|
|
|
int containers, strings, threads, timers, serials, ethernets, files, objects;
|
|
|
|
};
|
|
|
|
#endif // PIMONITOR_H
|