summaryrefslogtreecommitdiff
path: root/apt-private/private-utils.h
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-11-25 08:36:57 +0100
committerMichael Vogt <mvo@debian.org>2013-11-25 08:36:57 +0100
commitcfacba5230f2e6bb88a1949505843ac22ed342d5 (patch)
treeeff800414a0dc669cfba1002701eb66fe83756a7 /apt-private/private-utils.h
parent61f954bff040809e7ab57b3adec2fe95339ffb94 (diff)
add basic "edit-sources" command
Diffstat (limited to 'apt-private/private-utils.h')
-rw-r--r--apt-private/private-utils.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/apt-private/private-utils.h b/apt-private/private-utils.h
new file mode 100644
index 000000000..258dd06a8
--- /dev/null
+++ b/apt-private/private-utils.h
@@ -0,0 +1,11 @@
+#ifndef APT_PRIVATE_UTILS_H
+#define APT_PRIVATE_UTILS_H
+
+#include<string>
+
+void DisplayFileInPager(std::string filename);
+void EditFileInSensibleEditor(std::string filename);
+
+
+
+#endif