aboutsummaryrefslogtreecommitdiff
path: root/include/lomiri/gmenuharness/MatchResult.h
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-11-08 00:41:22 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-11-08 13:19:22 +0100
commit1fe3c7300509a9a8b3ddc58a9c687c50a6622d75 (patch)
tree00ade741c62d80fabf8e6d6dd9a44aa58cdd4107 /include/lomiri/gmenuharness/MatchResult.h
parent657e425e7feb8d18ea0cc422952e1f4d768efa63 (diff)
downloadayatana-indicator-sound-1fe3c7300509a9a8b3ddc58a9c687c50a6622d75.tar.gz
ayatana-indicator-sound-1fe3c7300509a9a8b3ddc58a9c687c50a6622d75.tar.bz2
ayatana-indicator-sound-1fe3c7300509a9a8b3ddc58a9c687c50a6622d75.zip
Drop local gmenuharness, use it from the system
Diffstat (limited to 'include/lomiri/gmenuharness/MatchResult.h')
-rw-r--r--include/lomiri/gmenuharness/MatchResult.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/include/lomiri/gmenuharness/MatchResult.h b/include/lomiri/gmenuharness/MatchResult.h
deleted file mode 100644
index c545dbf..0000000
--- a/include/lomiri/gmenuharness/MatchResult.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright © 2014 Canonical Ltd.
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Authored by: Pete Woods <pete.woods@canonical.com>
- */
-
-#pragma once
-
-#include <vector>
-#include <memory>
-#include <string>
-
-namespace lomiri
-{
-
-namespace gmenuharness
-{
-
-class MatchResult
-{
-public:
- MatchResult();
-
- MatchResult(MatchResult&& other);
-
- MatchResult(const MatchResult& other);
-
- MatchResult& operator=(const MatchResult& other);
-
- MatchResult& operator=(MatchResult&& other);
-
- ~MatchResult() = default;
-
- MatchResult createChild() const;
-
- void failure(const std::vector<unsigned int>& location, const std::string& message);
-
- void merge(const MatchResult& other);
-
- bool success() const;
-
- bool hasTimedOut() const;
-
- std::string concat_failures() const;
-
-protected:
- struct Priv;
-
- std::shared_ptr<Priv> p;
-};
-
-} // namespace gmenuharness
-
-} // namespace lomiri