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

#include "sourceObject.h"
#include "scripts.h"

class ExecContext;

class Test : public virtual SourceObject {
	public:
		Test(ScriptNodePtr);
		virtual bool passes(ExecContext *) const = 0;
		virtual void reset() const;
};
typedef boost::intrusive_ptr<const Test> TestPtr;

#endif