Also define a non-operator version of () for style purposes.

This commit is contained in:
Jonathan Protzenko 2015-08-24 11:17:38 -07:00
parent e258a52c79
commit aabd954d67
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,10 @@ public:
T* operator->() {
return object;
}
T* get() {
return object;
}
};
/**