mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
13 lines
207 B
C++
13 lines
207 B
C++
#include "IPychartFactory.h"
|
|
|
|
class PychartFactory : public IPychartFactory
|
|
{
|
|
public:
|
|
IPychart * getPychart(void);
|
|
|
|
static void initializePychart(void);
|
|
|
|
private:
|
|
|
|
static IPychart *pychart;
|
|
}; |