From Mike Wittman, added protected function support
This commit is contained in:
@@ -60,6 +60,14 @@ namespace osgIntrospection
|
||||
}
|
||||
};
|
||||
|
||||
struct ProtectedConstructorInvocationException: public ReflectionException
|
||||
{
|
||||
ProtectedConstructorInvocationException()
|
||||
: ReflectionException("cannot invoke protected constructor")
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
struct InvokeNotImplementedException: public ReflectionException
|
||||
{
|
||||
InvokeNotImplementedException()
|
||||
@@ -84,6 +92,14 @@ namespace osgIntrospection
|
||||
}
|
||||
};
|
||||
|
||||
struct ProtectedMethodInvocationException: public ReflectionException
|
||||
{
|
||||
ProtectedMethodInvocationException()
|
||||
: ReflectionException("cannot invoke protected method")
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
struct EmptyValueException: public ReflectionException
|
||||
{
|
||||
EmptyValueException()
|
||||
|
||||
Reference in New Issue
Block a user