aboutsummaryrefslogtreecommitdiff
path: root/src/Interface/AbstractBar.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-02-04 09:17:12 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-02-04 09:17:12 +0300
commit6e889419e2658a3a80fa00582314f1428f6052e5 (patch)
tree1c7f8c057acc0f8423f9248546709c2c6a7c1d6a /src/Interface/AbstractBar.cs
parentef04747df50da1fbb5124fc9c02f1869d93864f5 (diff)
Add Result Statusbar message
Diffstat (limited to 'src/Interface/AbstractBar.cs')
-rw-r--r--src/Interface/AbstractBar.cs11
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();
+ }
+}