summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-03 18:55:46 +0000
committercrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-03 18:55:46 +0000
commit334d172f163694ca70822249074115fe3b6ad789 (patch)
treea480d1ddba4ea4037a0c2fb985b875ae0521a6b6
parentaf51f3f5176667f361fa5d6dcfcbc434dbca6291 (diff)
downloadATCD-334d172f163694ca70822249074115fe3b6ad789.tar.gz
ChangeLogTag: Tue Jul 3 14:53:00 2001 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a11
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/AV_Core.h2
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/RTCP.h12
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/RTP.h7
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/Transport.h2
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/UDP.h6
6 files changed, 26 insertions, 14 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 0a3e68060e6..4d2b73f599c 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,14 @@
+Tue Jul 3 14:53:00 2001 Craig Rodrigues <crodrigu@bbn.com>
+
+ * orbsvcs/orbsvcs/AV/AV_Core.h
+ * orbsvcs/orbsvcs/AV/RTCP.h
+ * orbsvcs/orbsvcs/AV/RTP.h
+ * orbsvcs/orbsvcs/AV/Transport.h
+ * orbsvcs/orbsvcs/AV/UDP.h
+
+ Fix some includes, add TAO_AV_Export in more class
+ declarations.
+
Tue Jul 3 11:27:03 2001 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_codegen.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/AV/AV_Core.h b/TAO/orbsvcs/orbsvcs/AV/AV_Core.h
index 663a7632f75..cd87be48ae6 100644
--- a/TAO/orbsvcs/orbsvcs/AV/AV_Core.h
+++ b/TAO/orbsvcs/orbsvcs/AV/AV_Core.h
@@ -16,7 +16,7 @@
#include "tao/PortableServer/PortableServer.h"
#include "orbsvcs/AVStreamsC.h"
-#include "AV_export.h"
+#include "orbsvcs/AV/AV_export.h"
#include "ace/Singleton.h"
diff --git a/TAO/orbsvcs/orbsvcs/AV/RTCP.h b/TAO/orbsvcs/orbsvcs/AV/RTCP.h
index 04beb89ec2b..8f8fba09a6c 100644
--- a/TAO/orbsvcs/orbsvcs/AV/RTCP.h
+++ b/TAO/orbsvcs/orbsvcs/AV/RTCP.h
@@ -50,18 +50,18 @@
// FUZZ: disable check_for_math_include
#include "ace/OS.h"
-#include "source.h"
-#include "AVStreams_i.h"
-#include "UDP.h"
+#include "orbsvcs/AV/source.h"
+#include "orbsvcs/AV/AVStreams_i.h"
+#include "orbsvcs/AV/UDP.h"
#include <math.h>
#include <stdlib.h>
-#include "RTP.h"
+#include "orbsvcs/AV/RTP.h"
/**
* @class TAO_AV_RTP_State
* @brief Encapsulate the state of an RTP session
*/
-class TAO_AV_RTP_State
+class TAO_AV_Export TAO_AV_RTP_State
{
public:
TAO_AV_RTP_State (void);
@@ -87,7 +87,7 @@ class TAO_AV_SourceManager;
* @brief Encapsulate the header format for the Real Time Control
* Protocol (RTCP)
*/
-class TAO_AV_RTCP
+class TAO_AV_Export TAO_AV_RTCP
{
public:
struct rtcphdr
diff --git a/TAO/orbsvcs/orbsvcs/AV/RTP.h b/TAO/orbsvcs/orbsvcs/AV/RTP.h
index 0933f13b532..a3409f8bb6a 100644
--- a/TAO/orbsvcs/orbsvcs/AV/RTP.h
+++ b/TAO/orbsvcs/orbsvcs/AV/RTP.h
@@ -50,7 +50,8 @@
#define TAO_AV_RTP_H
#include "ace/pre.h"
-#include "Protocol_Factory.h"
+#include "orbsvcs/AV/AV_export.h"
+#include "orbsvcs/AV/Protocol_Factory.h"
#define RTP_PT_BVC 22 /* Berkeley video codec */
@@ -141,7 +142,7 @@ class TAO_AV_RTP_State;
* @class TAO_AV_RTP
* @brief Encapsulate the Real Time Protocol (RTP) header format.
*/
-class TAO_AV_RTP
+class TAO_AV_Export TAO_AV_RTP
{
public:
/* Basic RTP header */
@@ -249,7 +250,7 @@ public:
* @class TAO_AV_Protocol_Object
* @brief TAO_AV_Protocol_object for the RTP protocol
*/
-class TAO_AV_RTP_Object : public TAO_AV_Protocol_Object
+class TAO_AV_Export TAO_AV_RTP_Object : public TAO_AV_Protocol_Object
{
public:
TAO_AV_RTP_Object (TAO_AV_Callback *callback,
diff --git a/TAO/orbsvcs/orbsvcs/AV/Transport.h b/TAO/orbsvcs/orbsvcs/AV/Transport.h
index 8404dc405e9..b418638e038 100644
--- a/TAO/orbsvcs/orbsvcs/AV/Transport.h
+++ b/TAO/orbsvcs/orbsvcs/AV/Transport.h
@@ -100,7 +100,7 @@ private:
* @class TAO_AV_Flow_Handler
* @brief
*/
-class TAO_AV_Flow_Handler
+class TAO_AV_Export TAO_AV_Flow_Handler
{
public:
/// Constructor.
diff --git a/TAO/orbsvcs/orbsvcs/AV/UDP.h b/TAO/orbsvcs/orbsvcs/AV/UDP.h
index 6babc0ca50c..3b5b8036254 100644
--- a/TAO/orbsvcs/orbsvcs/AV/UDP.h
+++ b/TAO/orbsvcs/orbsvcs/AV/UDP.h
@@ -41,7 +41,7 @@ class TAO_AV_UDP_Flow_Handler;
* @brief A transport abstraction for udp sockets.
* Uses the ACE_SOCK_Dgram to send the data.
*/
-class TAO_AV_UDP_Transport
+class TAO_AV_Export TAO_AV_UDP_Transport
:public TAO_AV_Transport
{
@@ -100,7 +100,7 @@ protected:
* @class TAO_AV_UDP_Flow_Handler
* @brief Flow Handler for UDP flows.
*/
-class TAO_AV_UDP_Flow_Handler
+class TAO_AV_Export TAO_AV_UDP_Flow_Handler
:public virtual TAO_AV_Flow_Handler,
public virtual ACE_Event_Handler
{
@@ -157,7 +157,7 @@ protected:
* @class TAO_AV_UDP_Connector
* @brief
*/
-class TAO_AV_UDP_Connector
+class TAO_AV_Export TAO_AV_UDP_Connector
:public TAO_AV_Connector
{
public: