repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git]
/
ACE
/
examples
/
Web_Crawler
/
URL.cpp
blob
c9eb6fd738271447266c91f8d8a0b3e7790bd46b
1
#include
"URL.h"
2
3
4
Mem_Map_Stream
&
5
URL
::
stream
()
6
{
7
return this
->
stream_
;
8
}
9
10
URL
::~
URL
()
11
{
12
}
13
14
const
URL_Status
&
15
URL
::
reply_status
()
16
{
17
return this
->
reply_status_
;
18
}
19
20
void
21
URL
::
reply_status
(
const
URL_Status
&
rs
)
22
{
23
this
->
reply_status_
=
rs
;
24
}
25
26
const
ACE_CString
&
27
URL
::
content_type
()
28
{
29
return this
->
content_type_
;
30
}
31
32
void
33
URL
::
content_type
(
const
ACE_CString
&
ct
)
34
{
35
this
->
content_type_
=
ct
;
36
}