summaryrefslogtreecommitdiff
path: root/project2/common/library.h
blob: af8e73f7300e55b2027143cb07c256a4a2786f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef LIBRARY_LOADER_H
#define LIBRARY_LOADER_H

#include "xmlObjectLoader.h"

class Library : public SourceObject {
	public:
		Library(const xmlpp::Element * p);
		~Library();
		void loadComplete(const CommonObjects*);
	private:
		void * handle;
};
extern STORAGEOF(Library) libraries;

#endif