* style adjustments - no functional change

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38200 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe
2010-08-17 16:47:14 +00:00
parent 37cebf6883
commit 1195f511e5
2 changed files with 41 additions and 37 deletions
+6 -2
View File
@@ -12,6 +12,7 @@
#include <BeBuild.h>
#include <Messenger.h>
class BHandler;
class BLooper;
class BMessage;
@@ -20,7 +21,8 @@ class BMessage;
class BInvoker {
public:
BInvoker();
BInvoker(BMessage* message, const BHandler* handler,
BInvoker(BMessage* message,
const BHandler* handler,
const BLooper* looper = NULL);
BInvoker(BMessage* message, BMessenger target);
virtual ~BInvoker();
@@ -47,7 +49,8 @@ public:
protected:
uint32 InvokeKind(bool* _notify = NULL);
void BeginInvokeNotify(uint32 kind = B_CONTROL_INVOKED);
void BeginInvokeNotify(
uint32 kind = B_CONTROL_INVOKED);
void EndInvokeNotify();
private:
@@ -66,4 +69,5 @@ private:
uint32 _reserved[1];
};
#endif // _INVOKER_H