blob: 1e3501390e520b2a8147e4c1cc7cf7290d7f068a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* @file reflective.h
* @author Babbage
* @date 2006-05-15
* @brief Interface that must be implemented by all reflective classes.
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_REFLECTIVE_H
#define LL_REFLECTIVE_H
class LLMetaClass;
class LLReflective
{
public:
LLReflective();
virtual ~LLReflective();
virtual const LLMetaClass& getMetaClass() const = 0;
};
#endif // LL_REFLECTIVE_H
|