aboutsummaryrefslogtreecommitdiffstats
path: root/sisinstall/sisfilelink.h
diff options
context:
space:
mode:
authorDaniel Brahneborg <basic@chello.se>2002-03-12 10:31:02 +0000
committerDaniel Brahneborg <basic@chello.se>2002-03-12 10:31:02 +0000
commit0dd84267e740fd10f46103a5affee01611fcd224 (patch)
tree2afabc69a76b42691a3f98ec87dc5c4f7f736ae7 /sisinstall/sisfilelink.h
parentb105b61017274eec171269b0d0f9cc617f01d423 (diff)
downloadplptools-0dd84267e740fd10f46103a5affee01611fcd224.tar.gz
plptools-0dd84267e740fd10f46103a5affee01611fcd224.tar.bz2
plptools-0dd84267e740fd10f46103a5affee01611fcd224.zip
Load all residual sis files before installing, to make sure we don't
have another version installed already.
Diffstat (limited to 'sisinstall/sisfilelink.h')
-rw-r--r--sisinstall/sisfilelink.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/sisinstall/sisfilelink.h b/sisinstall/sisfilelink.h
new file mode 100644
index 0000000..66a0ad1
--- /dev/null
+++ b/sisinstall/sisfilelink.h
@@ -0,0 +1,16 @@
+#ifndef _SISFILELINK_H
+#define _SISFILELINK_H
+
+class SISFile;
+
+class SISFileLink
+{
+public:
+ SISFileLink(SISFile* file);
+
+ SISFileLink* m_next;
+ SISFile* m_file;
+};
+
+#endif
+