blob: 92f8e31b5450aa827f0944fdb6009398592f0188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SCRIPTS_FWD_H
#define SCRIPTS_FWD_H
#include <boost/intrusive_ptr.hpp>
#include <visibility.h>
class DLL_PUBLIC Something;
class DLL_PUBLIC ScriptNode;
class DLL_PUBLIC ScriptReader;
typedef std::shared_ptr<const ScriptNode> ScriptNodePtr;
typedef std::shared_ptr<const ScriptReader> ScriptReaderPtr;
#endif
|