File: User.h

package info (click to toggle)
dc-qt 0.2.0.alpha-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,948 kB
  • ctags: 5,361
  • sloc: cpp: 28,936; makefile: 19
file content (21 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef USER_H__
#define USER_H__

namespace dcqt_backend {

struct User
{
  User() : id(0) {}
  int id;
  string nick;
  int flags;
  string email;
  string desc;
  string connection;
  string tag;
  int64_t shared;
  int slots;
};

}
#endif