From ba3778396b4544c465bea6d89735042ae1c92caf Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Tue, 31 Aug 2021 13:46:43 -0600 Subject: [PATCH] removed registrar plugin --- openbr/plugins/core/registrar.cpp | 41 ----------------------------------------- 1 file changed, 0 insertions(+), 41 deletions(-) delete mode 100644 openbr/plugins/core/registrar.cpp diff --git a/openbr/plugins/core/registrar.cpp b/openbr/plugins/core/registrar.cpp deleted file mode 100644 index aaaf573..0000000 --- a/openbr/plugins/core/registrar.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Copyright 2012 The MITRE Corporation * - * * - * Licensed under the Apache License, Version 2.0 (the "License"); * - * you may not use this file except in compliance with the License. * - * You may obtain a copy of the License at * - * * - * http://www.apache.org/licenses/LICENSE-2.0 * - * * - * Unless required by applicable law or agreed to in writing, software * - * distributed under the License is distributed on an "AS IS" BASIS, * - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * - * See the License for the specific language governing permissions and * - * limitations under the License. * - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ - -#include - -namespace br -{ - -/*! - * \ingroup initializers - * \brief Register custom objects with Qt meta object system. - * \author Charles Otto \cite caotto - */ -class Registrar : public Initializer -{ - Q_OBJECT - - void initialize() const - { - qRegisterMetaType(); - } -}; - -BR_REGISTER(Initializer, Registrar) - -} // namespace br - -#include "core/registrar.moc" -- libgit2 0.21.4