BMA Server Framework
/home/barant/Documents/Development/BMASockets/BMAAccount.h
1 #ifndef __BMAAccount_h__
2 #define __BMAAccount_h__
3 
4 class BMAAccount : public BMAObject {
5 
6  public:
7  BMAAccount();
8  ~BMAAccount();
9 
10  string getName();
11  void setName(string name);
12  string getAlias();
13  void setAlias(string name);
14  vector<string> contacts;
15  ````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
16 
17 };
18 
19 #endif
Definition: BMAAccount.h:4
Definition: BMAObject.h:6