From 5c9872de884bcc3f1ec7cd6901b9440eec270d6d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 19 Jun 2012 13:14:43 +0200 Subject: Move IceSalSession declaration to sm.cxx Change-Id: I532e27b873e011aacebc1dd405de6d2e182ca3d4 --- vcl/unx/generic/app/sm.cxx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'vcl/unx/generic/app/sm.cxx') diff --git a/vcl/unx/generic/app/sm.cxx b/vcl/unx/generic/app/sm.cxx index 1f8debf3e209..8ba6e9cd2082 100644 --- a/vcl/unx/generic/app/sm.cxx +++ b/vcl/unx/generic/app/sm.cxx @@ -56,6 +56,24 @@ #include #include +#include "salsession.hxx" + +namespace { + +class IceSalSession : public SalSession +{ +public: + IceSalSession(); + virtual ~IceSalSession(); + + virtual void queryInteraction(); + virtual void interactionDone(); + virtual void saveDone(); + virtual bool cancelShutdown(); +}; + +} + SalSession* X11SalInstance::CreateSalSession() { SalSession * p = new IceSalSession; -- cgit