From 406adf478a344664af5adb4708799efccf452171 Mon Sep 17 00:00:00 2001 From: Lerking <33354709+Lerking@users.noreply.github.com> Date: Tue, 11 Dec 2018 17:15:23 +0100 Subject: [PATCH] Update h2inc.py Started H2INC class framework. Added traverse, read_file and write_file definitions. --- h2inc.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/h2inc.py b/h2inc.py index 8b13789..d908a18 100644 --- a/h2inc.py +++ b/h2inc.py @@ -1 +1,11 @@ +import os +class H2INC: + def traverse(): + sourcedir = "/usr/src" + destdir = "~/include" + + def read_file(fn): + + def write_file(fn): +