diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-04 09:17:12 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-04 09:17:12 +0300 |
commit | 6e889419e2658a3a80fa00582314f1428f6052e5 (patch) | |
tree | 1c7f8c057acc0f8423f9248546709c2c6a7c1d6a /src/Interface/AbstractBar.cs | |
parent | ef04747df50da1fbb5124fc9c02f1869d93864f5 (diff) |
Add Result Statusbar message
Diffstat (limited to 'src/Interface/AbstractBar.cs')
-rw-r--r-- | src/Interface/AbstractBar.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Interface/AbstractBar.cs b/src/Interface/AbstractBar.cs new file mode 100644 index 0000000..c5918a8 --- /dev/null +++ b/src/Interface/AbstractBar.cs @@ -0,0 +1,11 @@ +using Microsoft.Office.Interop.Excel; + +namespace RehauSku.Interface +{ + internal abstract class AbstractBar + { + protected Application Excel = AddIn.Excel; + + public abstract void Update(); + } +} |