aboutsummaryrefslogtreecommitdiff
path: root/src/rotation-lock.h
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2023-10-09 18:41:46 +0200
committerRobert Tari <robert@tari.in>2023-10-09 18:41:46 +0200
commit132a445a9eb633d611f18f27f2f8e5742aa537f3 (patch)
treec3200f154572d243bd137405055f98e31340ebb5 /src/rotation-lock.h
parentabcbf6b7ff2f09fc0351b32e9977db9a1d7a0e1b (diff)
downloadayatana-indicator-display-132a445a9eb633d611f18f27f2f8e5742aa537f3.tar.gz
ayatana-indicator-display-132a445a9eb633d611f18f27f2f8e5742aa537f3.tar.bz2
ayatana-indicator-display-132a445a9eb633d611f18f27f2f8e5742aa537f3.zip
Rename indicator class and service source files
Diffstat (limited to 'src/rotation-lock.h')
-rw-r--r--src/rotation-lock.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/rotation-lock.h b/src/rotation-lock.h
deleted file mode 100644
index 7bdfb14..0000000
--- a/src/rotation-lock.h
+++ /dev/null
@@ -1,42 +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 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 warranties of
- * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Authors:
- * Charles Kerr <charles.kerr@canonical.com>
- */
-
-#ifndef INDICATOR_DISPLAY_ROTATION_LOCK_H
-#define INDICATOR_DISPLAY_ROTATION_LOCK_H
-
-#include <src/indicator.h>
-
-#include <memory> // std::unique_ptr
-
-class RotationLockIndicator: public Indicator
-{
-public:
- RotationLockIndicator();
- ~RotationLockIndicator();
-
- const char* name() const override;
- GSimpleActionGroup* action_group() const override;
- std::vector<std::shared_ptr<Profile>> profiles() const override;
-
-protected:
- class Impl;
- std::unique_ptr<Impl> impl;
-};
-
-#endif