aboutsummaryrefslogtreecommitdiff
path: root/Source/fsformunit.pas
diff options
context:
space:
mode:
Diffstat (limited to 'Source/fsformunit.pas')
-rw-r--r--Source/fsformunit.pas18
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/fsformunit.pas b/Source/fsformunit.pas
new file mode 100644
index 0000000..3f71db8
--- /dev/null
+++ b/Source/fsformunit.pas
@@ -0,0 +1,18 @@
+unit fsformunit;
+
+interface
+
+uses
+ Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
+
+type
+ TFsForm = class(TForm)
+ public
+ PdName: String;
+ procedure Parse(const S: String); virtual; abstract;
+ end;
+
+implementation
+
+end.
+ \ No newline at end of file