~ubuntu-branches/ubuntu/precise/gle-graphics/precise

« back to all changes in this revision

Viewing changes to src/gle/cmdline.h

  • Committer: Package Import Robot
  • Author(s): Christian T. Steigies
  • Date: 2011-10-20 22:15:27 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111020221527-sv27lrowdd221npi
Tags: 4.2.3b-1
* new upstream version
* switch from cdbs to debhelper 8
* update copyright file
* do no rely on proc on non-linux systems (closes: #644588)
* do not ship glebtool, which is a helper used only during build
* add libqt4-opengl-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
        virtual void write(ostream& os);
140
140
        virtual bool addValue(const string& value);
141
141
        virtual void setDefaultValue();
 
142
        virtual void setValue(int value);
142
143
        inline const int getValue() { return m_Value; }
143
144
        inline void setDefault(int value) { m_Default = value; }
144
145
};
298
299
        const string& getExtraArg(int i);
299
300
        const string& getStringValue(int option, int arg = 0);
300
301
        int getIntValue(int option, int arg = 0);
 
302
        void setIntValue(int option, int value, int arg = 0);
301
303
        bool checkForStdin();
302
304
        inline bool hasStdin() { return m_HasStdin; }
303
305
        inline bool supportsExtraArgs() { return m_MArgSep.size() != 0; }