12 lines
183 B
C
12 lines
183 B
C
|
#ifndef DORICLIBRARY_H
|
||
|
#define DORICLIBRARY_H
|
||
|
|
||
|
#include "DoricRegistry.h"
|
||
|
|
||
|
class DoricLibrary {
|
||
|
public:
|
||
|
virtual void load(DoricRegistry *registry) = 0;
|
||
|
};
|
||
|
|
||
|
#endif // DORICLIBRARY_H
|