[go: up one dir, main page]

Menu

[e5da5b]: / src / password.h  Maximize  Restore  History

Download this file

25 lines (19 with data), 409 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __PASSWORD__
#include <string>
using namespace std;
//////////////////////////////////////////////////////////////////////////
//
class Password
//
// Structure that holds the password
//
//////////////////////////////////////////////////////////////////////////
{
public:
bool nopasswd;
string text;
void clear();
void set_passwd(string passwd);
};
#define __PASSWORD__
#endif