summaryrefslogtreecommitdiff
path: root/src/frontend/framework/femain.cpp
diff options
context:
space:
mode:
authorRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:33 -0400
committerRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:33 -0400
commit8d3fc864d094eeadc721f8e93436b37a5fab173e (patch)
tree05e201c67dca55b4ccdf90ad479a25d95e3b1e63 /src/frontend/framework/femain.cpp
Imported Upstream version 1.5.3
Diffstat (limited to 'src/frontend/framework/femain.cpp')
-rw-r--r--src/frontend/framework/femain.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/frontend/framework/femain.cpp b/src/frontend/framework/femain.cpp
new file mode 100644
index 0000000..415ab6f
--- /dev/null
+++ b/src/frontend/framework/femain.cpp
@@ -0,0 +1,12 @@
+#include <femain.h>
+
+FEMain::FEMain() {
+}
+
+FEMain::~FEMain() {
+ list <SWDisplay *>::iterator it;
+
+ for (it = displays.begin(); it != displays.end(); it++)
+ delete *it;
+
+}