aboutsummaryrefslogtreecommitdiff
path: root/src/Remember.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-07-10 13:23:09 (GMT)
committerrathnor <rathnor>2003-07-10 13:23:09 (GMT)
commita3c69f66110df1d2c254a363dcb68c370284519b (patch)
treec0a4d3b8bb3e97bb6bb01baebf8503a2a9c1a4f8 /src/Remember.hh
parentc4333aeda129cb65d891808859bdc1a369d49766 (diff)
downloadfluxbox-a3c69f66110df1d2c254a363dcb68c370284519b.zip
fluxbox-a3c69f66110df1d2c254a363dcb68c370284519b.tar.bz2
add [startup] to remember
Diffstat (limited to 'src/Remember.hh')
-rw-r--r--src/Remember.hh7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Remember.hh b/src/Remember.hh
index c687137..4520c23 100644
--- a/src/Remember.hh
+++ b/src/Remember.hh
@@ -21,7 +21,7 @@
21// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 21// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22// DEALINGS IN THE SOFTWARE. 22// DEALINGS IN THE SOFTWARE.
23 23
24// $Id: Remember.hh,v 1.10 2003/07/04 14:06:20 rathnor Exp $ 24// $Id: Remember.hh,v 1.11 2003/07/10 13:23:09 rathnor Exp $
25 25
26/* Based on the original "Remember patch" by Xavier Brouckaert */ 26/* Based on the original "Remember patch" by Xavier Brouckaert */
27 27
@@ -148,6 +148,9 @@ public:
148 // particularly useful to update counters etc on windowclose 148 // particularly useful to update counters etc on windowclose
149 typedef std::map<WinClient *, Application *> Clients; 149 typedef std::map<WinClient *, Application *> Clients;
150 150
151 // we have to remember any startups we did so that they are saved again
152 typedef std::list<std::string> Startups;
153
151 Remember(); 154 Remember();
152 ~Remember(); 155 ~Remember();
153 156
@@ -196,6 +199,8 @@ private:
196 Patterns m_pats; 199 Patterns m_pats;
197 Clients m_clients; 200 Clients m_clients;
198 201
202 Startups m_startups;
203
199}; 204};
200 205
201#endif // REMEMBER_HH 206#endif // REMEMBER_HH