Beam-lib  2.16.3
This is the Beam C++ class library.
BUrl.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * BUrl.h BEAM BUrl access class
3  * T.Barnaby, BEAM Ltd, 12/11/02
4  * Copyright (c) 2012 All Right Reserved, Beam Ltd, http://www.beam.ltd.uk
5  *******************************************************************************
6  */
7 #ifndef BURL_H
8 #define BURL_H 1
9 
10 #include <stdio.h>
11 #include <BString.h>
12 #include <BError.h>
13 
15 class BUrl {
16 public:
17  BUrl();
18  ~BUrl();
19 
20  BError readString(BString url, BString& str);
21 private:
22  static int oinit;
23  static size_t writeData(void* data, size_t size, size_t elSize, void* stream);
24 
25  BString ores;
26 };
27 
28 #endif
BUrl()
Definition: BUrl.cpp:30
BError readString(BString url, BString &str)
Reads URL.
Definition: BUrl.cpp:42
Definition: BString.h:18
~BUrl()
Definition: BUrl.cpp:36
char data[8]
Definition: BoapMc1.h:21
Basic access to a Url.
Definition: BUrl.h:15
Definition: BError.h:25