2015-07-16 19:03:05 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
2015-07-21 17:32:30 +00:00
|
|
|
#include "short_phone_number.h"
|
2015-07-16 19:03:05 +00:00
|
|
|
|
|
|
|
int main(int argc, const char** argv) {
|
2015-07-21 17:32:30 +00:00
|
|
|
std::cout << sizeof(ShortPhoneNumber) << std::endl;
|
2015-07-16 19:03:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|