PostgreSQL-IBAN/specification.h

18 lines
404 B
C
Raw Normal View History

2016-03-01 16:56:02 +01:00
#pragma once
#include <string>
class Specification {
2016-03-01 20:36:43 +01:00
public:
2016-03-01 16:56:02 +01:00
Specification(std::string countryCode, int length, std::string structure, std::string example) :
countryCode(countryCode),
length(length),
structure(structure),
2016-03-01 20:36:43 +01:00
example(example) {
};
Specification(std::string example) : example(example) {};
2016-03-01 16:56:02 +01:00
std::string countryCode;
int length;
std::string structure;
std::string example;
};