1//
2// Validator.cpp
3//
4// Library: Util
5// Package: Options
6// Module: Validator
7//
8// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/Util/Validator.h"
16
17
18namespace Poco {
19namespace Util {
20
21
22Validator::Validator()
23{
24}
25
26
27Validator::~Validator()
28{
29}
30
31
32} } // namespace Poco::Util
33