aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-wm-INCOMPLETE/animations/BaseAnimGroup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/lumina-wm-INCOMPLETE/animations/BaseAnimGroup.cpp')
-rw-r--r--src-qt5/core/lumina-wm-INCOMPLETE/animations/BaseAnimGroup.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src-qt5/core/lumina-wm-INCOMPLETE/animations/BaseAnimGroup.cpp b/src-qt5/core/lumina-wm-INCOMPLETE/animations/BaseAnimGroup.cpp
deleted file mode 100644
index 1e55dc76..00000000
--- a/src-qt5/core/lumina-wm-INCOMPLETE/animations/BaseAnimGroup.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-//===========================================
-// Lumina-DE source code
-// Copyright (c) 2015, Ken Moore
-// Available under the 3-clause BSD license
-// See the LICENSE file for full details
-//===========================================
-#include "BaseAnimGroup.h"
-
-//Include all the known subclasses here, then add a unique ID for it to the functions at the bottom
-#include "SampleAnimation.h"
-
-//==============================
-// PLUGIN LOADING/LISTING
-//==============================
-BaseAnimGroup* BaseAnimGroup::NewAnimation(QString type, QWidget *parent, QSettings *set){
- //This is where we place all the known plugin ID's, and load the associated subclass
- if(type == "sample"){
- return (new SampleAnimation(parent, set));
- }else{
- //Unknown screensaver, return a blank animation group
- return (new BaseAnimGroup(parent, set));
- }
-}
-
-QStringList BaseAnimGroup::KnownAnimations(){
- return (QStringList() << "sample");
-} \ No newline at end of file
bgstack15