~ubuntu-branches/ubuntu/maverick/lordsawar/maverick

« back to all changes in this revision

Viewing changes to src/xmlhelper.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2010-04-10 09:29:33 UTC
  • mfrom: (1.1.9 upstream) (5.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100410092933-23uq4dxig30kmtcw
Tags: 0.1.8-1
* New upstream release.
* Add misc:Depends for -data package.
* Bump Standards Version to 3.8.4. (No changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
        bool saveData(std::string identifier, const double value);
147
147
        /* amd64 fix, UL: still neccessary?*/
148
148
        bool saveData(std::string identifier, unsigned long int value);
 
149
        bool saveData(std::string identifier, const Gdk::Color value);
149
150
 
150
151
        /** Closes the reading/writing stream.
151
152
          * @note As soon as you call this function, the object is dead with
190
191
        bool getData(int& data, std::string name);
191
192
        bool getData(guint32& data, std::string name);
192
193
        bool getData(double& data, std::string name);
 
194
        bool getData(Gdk::Color& data, std::string name);
193
195
 
194
196
        //! Returns the version number of the save file
195
197
        std::string getVersion() const {return d_version;}