summaryrefslogtreecommitdiff
path: root/icespider/core/acceptable.h
blob: 20b6f09eb46bd0a2eb940add9b11bc0af95f3b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ICESPIDER_ACCEPTABLE_H
#define ICESPIDER_ACCEPTABLE_H

#include <visibility.h>

namespace IceSpider {
	class DLL_PUBLIC Acceptable {
		public:
			void free();

			char * grp;
			char * type;
			float pri;
	};
}

#endif