PostgreSQL-IBAN/specification.h

19 lines
405 B
C
Raw Normal View History

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