Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/browser/GeckoBrowserPersist.h
blob: e976789339a012e9e6e9d6949900dba09264a5c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __GECKO_BROWSER_PERSIST_H__
#define __GECKO_BROWSER_PERSIST_H__

#include "sugar-browser.h"

class GeckoBrowserPersist
{
public:
    GeckoBrowserPersist(SugarBrowser *browser);
    ~GeckoBrowserPersist();

    bool SaveURI(const char *uri, const char *filename);
private:
    SugarBrowser    *mBrowser;
protected:
    /* additional members */
};

#endif // __GECKO_BROWSER_PERSIST_H__