Changeset 13898
- Timestamp:
- 05/25/12 23:07:58 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Readline.h
r13771 r13898 27 27 28 28 int fLine; 29 static int fLabel; 29 int fSection; 30 int fLabel; 31 int fScriptDepth; 32 static bool fStopScript; 30 33 static std::string fScript; 31 34 … … 102 105 bool IsStopped() const; 103 106 void ProcessLine(const std::string &str); 104 static void SetLabel(int l) { fLabel = l; } 105 static int GetLabel() { return fLabel; } 107 void SetLabel(int l) { fLabel = l; } 108 static void StopScript() { fStopScript = true; } 109 static bool IsScriptStopped() { return fStopScript; } 106 110 107 111 static std::string GetScript() { return fScript; }
Note:
See TracChangeset
for help on using the changeset viewer.