summaryrefslogtreecommitdiff
path: root/TAO/tao/QtResource_Loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/QtResource_Loader.h')
-rw-r--r--TAO/tao/QtResource_Loader.h32
1 files changed, 21 insertions, 11 deletions
diff --git a/TAO/tao/QtResource_Loader.h b/TAO/tao/QtResource_Loader.h
index ab10e354c5f..6d461084645 100644
--- a/TAO/tao/QtResource_Loader.h
+++ b/TAO/tao/QtResource_Loader.h
@@ -11,32 +11,42 @@
*/
//=============================================================================
-#ifndef _TAO_QTRESOURCE_LOADER_H
-#define _TAO_QTRESOURCE_LOADER_H
+#ifndef TAO_QTRESOURCE_LOADER_H
+#define TAO_QTRESOURCE_LOADER_H
#include /**/ "ace/pre.h"
-#include /**/ <qapplication.h>
-#include /**/ "TAO_QtResource_Export.h"
+
+#include "TAO_QtResource_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+#include <qapplication.h>
+
namespace TAO
{
- /** Loads TAO resources related with Qt.
+ /**
+ * @class QtResource_Loader
+ *
+ * @brief Loads TAO resources related with Qt.
*
- * This class changes the default reactor implementation into ACE_QtReactor by
- * calling TAO_ORB_Core::set_gui_resource_factory. Please notice, this class has
- * to be created in the main Qt thread, because set_gui_resource_factory creates
- * a variable in TSS. This way QtReactor is instantiated only in Qt event loop thread.
+ * This class changes the default reactor implementation into
+ * ACE_QtReactor by calling
+ * TAO_ORB_Core::set_gui_resource_factory. Please notice, this class
+ * has to be created in the main Qt thread, because
+ * set_gui_resource_factory creates a variable in TSS. This way
+ * QtReactor is instantiated only in Qt event loop thread.
*
+ * @@Marek, could you please point out that this class is the
+ * interface to the user to load things
*/
+
class TAO_QtResource_Export QtResource_Loader
{
-
public:
QtResource_Loader (QApplication *qapp);
- virtual ~QtResource_Loader ();
+
+ virtual ~QtResource_Loader (void);
};
}
#include /**/ "ace/post.h"