Beamlib  3.0.1
This is the Beam C++ class library.
BoapnsC.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * BoapnsC.h Produced by Bidl
3  *******************************************************************************
4  */
5 
6 #ifndef BOAPNSC_H
7 #define BOAPNSC_H 1
8 
9 #include <stdlib.h>
10 #include <stdint.h>
11 #include <Boap.h>
12 #include <BString.h>
13 #include <BList.h>
14 #include <BArray.h>
15 #include <BoapnsD.h>
16 
17 
18 namespace Boapns {
19  const BUInt32 apiVersion = 0;
20 
21  class Boapns : public BoapClientObject {
22  public:
23  Boapns(BString name = "");
24  BError getVersion(BString& version);
25  BError getEntryList(BList<BoapEntry >& entryList);
26  BError getEntry(BString name, BoapEntry& entry);
27  BError addEntry(BoapEntry entry);
28  BError delEntry(BString name);
29  BError getNewName(BString& name);
30  private:
31  };
32 }
33 #endif
uint32_t BUInt32
Definition: BTypes.h:24
BOAP data class definitions for: Boapns.
Error return class. This class is used to return the error status from a function....
Definition: BError.h:31
Template based list class.
Definition: BList.h:31
This class stores and manipulates ASCII strings.
Definition: BString.h:20
Base for all Boap client objects.
Definition: Boap.h:56
Definition: BoapnsD.h:23
Definition: Boap.h:148
const BUInt32 apiVersion
Definition: BoapnsC.h:19