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

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

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

#endif