summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src/WhatsAPI++/PhoneNumber.h
blob: aa3dd16ef91fe5912b8ed840ca9ac30654626a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * PhoneNumber.h
 *
 */

#ifndef PHONENUMBER_H_
#define PHONENUMBER_H_

#include <string>

struct PhoneNumber
{
	PhoneNumber(const std::string &number);

	std::string Country;
	std::string Number;
	
	const char *ISO3166, *ISO639;
	int countryCode;
	int mcc, mnc;
};

#endif /* PHONENUMBER_H_ */