sipxportlib  Version 3.3
HostAdapterAddress.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2004-2006 SIPfoundry Inc.
3 // Licensed by SIPfoundry under the LGPL license.
4 //
5 // Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
6 // Licensed to SIPfoundry under a Contributor Agreement.
7 //
8 // $$
10 
11 
12 #ifndef HostAdapterAddress_h
13 #define HostAdapterAddress_h
14 
15 // SYSTEM INCLUDES
16 // APPLICATION INCLUDES
17 #include <utl/UtlString.h>
18 // DEFINES
19 // MACROS
20 // EXTERNAL FUNCTIONS
21 // EXTERNAL VARIABLES
22 // CONSTANTS
23 // STRUCTS
24 // TYPEDEFS
25 // FORWARD DECLARATIONS
26 
31 {
32 /* //////////////////////////// PUBLIC //////////////////////////////////// */
33 public:
34 
35 /* ============================ CREATORS ================================== */
36 
40  HostAdapterAddress(const char* szAdapter, const char* szAddress) :
41  mAdapter(szAdapter),
42  mAddress(szAddress)
43  {
44  }
45 
50  {
51  }
52 
55 
56 /* ============================ MANIPULATORS ============================== */
57 
58 /* ============================ ACCESSORS ================================= */
59 
60 /* ============================ INQUIRY =================================== */
61 
62 /* //////////////////////////// PROTECTED ///////////////////////////////// */
63 protected:
64 
65 /* //////////////////////////// PRIVATE /////////////////////////////////// */
66 private:
67 
68 };
69 
70 #endif
UtlString mAddress
Definition: HostAdapterAddress.h:54
Definition: UtlString.h:48
UtlString mAdapter
Definition: HostAdapterAddress.h:53
HostAdapterAddress(const char *szAdapter, const char *szAddress)
Definition: HostAdapterAddress.h:40
virtual ~HostAdapterAddress()
Definition: HostAdapterAddress.h:49
Definition: HostAdapterAddress.h:30