BPicture: Fix archive constructor.
[haiku.git] / src / kits / network / libnetapi / UrlResult.cpp
blob67191a2da8c20b52d856090a39c3c487597da19c
1 /*
2 * Copyright 2013 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Adrien Destugues, pulkomandy@pulkomandy.tk
7 */
10 #include <UrlResult.h>
13 BUrlResult::~BUrlResult()
18 void
19 BUrlResult::SetContentType(BString contentType)
21 fContentType = contentType;
25 void
26 BUrlResult::SetLength(size_t length)
28 fLength = length;
32 BString
33 BUrlResult::ContentType() const
35 return fContentType;
39 size_t
40 BUrlResult::Length() const
42 return fLength;