xref: /glogg/src/session.cpp (revision d96f3f211e1e2a3a5b219145986c18e10b0f96aa)
1*d96f3f21SNicolas Bonnefon /*
2*d96f3f21SNicolas Bonnefon  * Copyright (C) 2013 Nicolas Bonnefon and other contributors
3*d96f3f21SNicolas Bonnefon  *
4*d96f3f21SNicolas Bonnefon  * This file is part of glogg.
5*d96f3f21SNicolas Bonnefon  *
6*d96f3f21SNicolas Bonnefon  * glogg is free software: you can redistribute it and/or modify
7*d96f3f21SNicolas Bonnefon  * it under the terms of the GNU General Public License as published by
8*d96f3f21SNicolas Bonnefon  * the Free Software Foundation, either version 3 of the License, or
9*d96f3f21SNicolas Bonnefon  * (at your option) any later version.
10*d96f3f21SNicolas Bonnefon  *
11*d96f3f21SNicolas Bonnefon  * glogg is distributed in the hope that it will be useful,
12*d96f3f21SNicolas Bonnefon  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13*d96f3f21SNicolas Bonnefon  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*d96f3f21SNicolas Bonnefon  * GNU General Public License for more details.
15*d96f3f21SNicolas Bonnefon  *
16*d96f3f21SNicolas Bonnefon  * You should have received a copy of the GNU General Public License
17*d96f3f21SNicolas Bonnefon  * along with glogg.  If not, see <http://www.gnu.org/licenses/>.
18*d96f3f21SNicolas Bonnefon  */
19*d96f3f21SNicolas Bonnefon 
20*d96f3f21SNicolas Bonnefon #include "session.h"
21*d96f3f21SNicolas Bonnefon 
22*d96f3f21SNicolas Bonnefon #include "viewinterface.h"
23*d96f3f21SNicolas Bonnefon 
24*d96f3f21SNicolas Bonnefon Session::Session()
25*d96f3f21SNicolas Bonnefon {
26*d96f3f21SNicolas Bonnefon }
27*d96f3f21SNicolas Bonnefon 
28*d96f3f21SNicolas Bonnefon Session::~Session()
29*d96f3f21SNicolas Bonnefon {
30*d96f3f21SNicolas Bonnefon     // FIXME Clean up all the data objects...
31*d96f3f21SNicolas Bonnefon }
32