summaryrefslogtreecommitdiff
path: root/protocols/ace/INet/Response.h
blob: 52e21dc36bbebd7bf1a4dff9f7c192049c598d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// $Id$

/**
 * @file Response.h
 *
 * @author Martin Corino <mcorino@remedy.nl>
 */

#ifndef ACE_INET_RESPONSE_H
#define ACE_INET_RESPONSE_H

#include /**/ "ace/pre.h"

#include "ace/INet/INet_Export.h"

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

namespace ACE
  {
    namespace INet
      {

        /**
        * @class ACE_INet_Response
        *
        * @brief Base class for responses.
        *
        */
        class ACE_INET_Export Response
          {
            public:
              Response ();
              virtual ~Response ();
          };

      }
  }

ACE_END_VERSIONED_NAMESPACE_DECL

#include /**/ "ace/post.h"
#endif /* ACE_INET_RESPONSE_H */