2004-12-09 13:28:20 +08:00
|
|
|
#ifndef OSGINTROSPECTION_CUSTOMATTRIBUTE_
|
|
|
|
#define OSGINTROSPECTION_CUSTOMATTRIBUTE_
|
|
|
|
|
|
|
|
namespace osgIntrospection
|
|
|
|
{
|
|
|
|
|
2005-03-14 17:28:31 +08:00
|
|
|
/// The base class for custom attributes. This is an empty class
|
|
|
|
/// for now.
|
|
|
|
class CustomAttribute
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~CustomAttribute() {}
|
|
|
|
};
|
2004-12-09 13:28:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|