8023:56359a72ab10 | 8025:aaad60a23960 |
---|---|
2 | 2 |
3 # Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de> | 3 # Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing a class representing the project debugger properties | 7 Module implementing a class representing the session JSON file. |
8 JSON file. | |
9 """ | 8 """ |
10 | 9 |
11 import json | 10 import json |
12 import time | 11 import time |
13 | 12 |
20 import Preferences | 19 import Preferences |
21 | 20 |
22 | 21 |
23 class SessionFile(QObject): | 22 class SessionFile(QObject): |
24 """ | 23 """ |
25 Class representing the project debugger properties JSON file. | 24 Class representing the session JSON file. |
26 """ | 25 """ |
27 def __init__(self, isGlobal: bool, parent: QObject = None): | 26 def __init__(self, isGlobal: bool, parent: QObject = None): |
28 """ | 27 """ |
29 Constructor | 28 Constructor |
30 | 29 |