Added doxygen comments.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@495 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -4,18 +4,31 @@
|
|||||||
|
|
||||||
#include "ClipboardHandler.h"
|
#include "ClipboardHandler.h"
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class ClipboardHandler
|
||||||
|
\brief Handles all clipboard related requests.
|
||||||
|
*/
|
||||||
|
|
||||||
// constructor
|
// constructor
|
||||||
|
/*! \brief Creates and initializes a ClipboardHandler.
|
||||||
|
*/
|
||||||
ClipboardHandler::ClipboardHandler()
|
ClipboardHandler::ClipboardHandler()
|
||||||
: BHandler()
|
: BHandler()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// destructor
|
// destructor
|
||||||
|
/*! \brief Frees all resources associate with this object.
|
||||||
|
*/
|
||||||
ClipboardHandler::~ClipboardHandler()
|
ClipboardHandler::~ClipboardHandler()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// MessageReceived
|
// MessageReceived
|
||||||
|
/*! \brief Overrides the super class version to handle the clipboard specific
|
||||||
|
messages.
|
||||||
|
\param message The message to be handled
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
ClipboardHandler::MessageReceived(BMessage *message)
|
ClipboardHandler::MessageReceived(BMessage *message)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,18 +4,33 @@
|
|||||||
|
|
||||||
#include "MIMEManager.h"
|
#include "MIMEManager.h"
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class MIMEManager
|
||||||
|
\brief MIMEManager is the master of the MIME data base.
|
||||||
|
|
||||||
|
All write and non-atomic read accesses are carried out by this class.
|
||||||
|
*/
|
||||||
|
|
||||||
// constructor
|
// constructor
|
||||||
|
/*! \brief Creates and initializes a MIMEManager.
|
||||||
|
*/
|
||||||
MIMEManager::MIMEManager()
|
MIMEManager::MIMEManager()
|
||||||
: BLooper("main_mime")
|
: BLooper("main_mime")
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// destructor
|
// destructor
|
||||||
|
/*! \brief Frees all resources associate with this object.
|
||||||
|
*/
|
||||||
MIMEManager::~MIMEManager()
|
MIMEManager::~MIMEManager()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// MessageReceived
|
// MessageReceived
|
||||||
|
/*! \brief Overrides the super class version to handle the MIME specific
|
||||||
|
messages.
|
||||||
|
\param message The message to be handled
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
MIMEManager::MessageReceived(BMessage *message)
|
MIMEManager::MessageReceived(BMessage *message)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user