-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nathaniel May
committed
Oct 25, 2021
1 parent
d751753
commit f4268e4
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
|
||
class Singleton: | ||
__instance = None | ||
@staticmethod | ||
def getInstance(): | ||
""" Static access method. """ | ||
if Singleton.__instance == None: | ||
Singleton() | ||
return Singleton.__instance | ||
def __init__(self): | ||
""" Virtually private constructor. """ | ||
if Singleton.__instance != None: | ||
raise Exception("This class is a singleton!") | ||
else: | ||
Singleton.__instance = self | ||
|
||
|
||
# All classes that inherit from this one should be defined in this file. | ||
class BaseEvent(): | ||
pass | ||
|
||
|
||
class StartParse(BaseEvent): | ||
pass | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters