summaryrefslogtreecommitdiff
path: root/Applications/Spreadsheet/JSIntegration.h
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-08-28 16:20:23 +0430
committerAndreas Kling <kling@serenityos.org>2020-08-28 17:08:09 +0200
commit5715ed3dd61c5cbdb252136e449aa46871b111da (patch)
tree0dd21e8c74f2afafa060bd7f15458c7d64772fc0 /Applications/Spreadsheet/JSIntegration.h
parentb6c34c05219e2deadce18eedadce425878442254 (diff)
downloadserenity-5715ed3dd61c5cbdb252136e449aa46871b111da.zip
Spreadsheet: Reorganise the sources a bit
This commit just moves some code around: - Give Cell its own file - Pull all forward-declared classes/structs into Forward.h - Clean up the order of member functions a bit
Diffstat (limited to 'Applications/Spreadsheet/JSIntegration.h')
-rw-r--r--Applications/Spreadsheet/JSIntegration.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Applications/Spreadsheet/JSIntegration.h b/Applications/Spreadsheet/JSIntegration.h
index bd3bd1e77f..ace3e3c823 100644
--- a/Applications/Spreadsheet/JSIntegration.h
+++ b/Applications/Spreadsheet/JSIntegration.h
@@ -26,14 +26,12 @@
#pragma once
+#include "Forward.h"
#include <LibJS/Forward.h>
#include <LibJS/Runtime/GlobalObject.h>
namespace Spreadsheet {
-class Sheet;
-class Workbook;
-
class SheetGlobalObject : public JS::GlobalObject {
JS_OBJECT(SheetGlobalObject, JS::GlobalObject);