PostgreSQL-IBAN/validate.h
2016-03-01 20:36:43 +01:00

15 lines
267 B
C++

#pragma once
#include <memory>
#include <map>
#include "specification.h"
class Validate {
public:
Validate();
~Validate();
bool isValid(std::string arg);
void addSpecification(Specification* specPtr);
std::map<std::string, Specification*> specifications;
};