Skip to content
Snippets Groups Projects
Commit 31b1eddf authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

..

parent 8d7bbe79
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ class CAxis { ...@@ -16,7 +16,7 @@ class CAxis {
bool force; bool force;
CAxis( bool _log ) : CAxis( bool _log ) :
logflag(_log), force(false) { setAuto(); }; logflag(_log), force(false) { setAuto(); }
void setLog( bool _log ); void setLog( bool _log );
......
...@@ -55,6 +55,7 @@ private: ...@@ -55,6 +55,7 @@ private:
vector<string> ps_accu; // future output is accumulated here vector<string> ps_accu; // future output is accumulated here
}; };
//! Direct access to plot windows collection. //! Direct access to plot windows collection.
namespace NPloWin { namespace NPloWin {
......
...@@ -64,12 +64,12 @@ public: ...@@ -64,12 +64,12 @@ public:
// inspect: // inspect:
bool evaluated() const { return !limneeded || limgiven; } bool evaluated() const { return !limneeded || limgiven; }
uint size() const { return V.size(); }; uint size() const { return V.size(); }
bool contains( uint val ) const; bool contains( uint val ) const;
bool all_between( int imi, int ima ); bool all_between( int imi, int ima );
string str() const; string str() const;
friend ostream& operator<< ( ostream& s, CList L ) { friend ostream& operator<< ( ostream& s, CList L ) {
return s << L.str(); }; return s << L.str(); }
private: private:
void parse( string inp ); void parse( string inp );
......
...@@ -75,4 +75,4 @@ namespace NOlm { ...@@ -75,4 +75,4 @@ namespace NOlm {
//! Allow command to overwrite its input files? //! Allow command to overwrite its input files?
extern bool overwrite; extern bool overwrite;
}; }; // namespace NOlm
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment