From 5bb3a5b23050d2ee796590e96cf3cbcd331e6f1e Mon Sep 17 00:00:00 2001 From: Reno <25192197+singularitti@users.noreply.github.com> Date: Fri, 14 Jan 2022 19:35:24 -0500 Subject: [PATCH] Add interface functions `getpotentials` & `getpseudodir` --- src/Inputs.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Inputs.jl b/src/Inputs.jl index c5cb329..7050d3a 100644 --- a/src/Inputs.jl +++ b/src/Inputs.jl @@ -1,6 +1,6 @@ module Inputs -export groupname, writetxt, asstring +export groupname, writetxt, asstring, getpseudodir, getpotentials """ Input @@ -77,4 +77,8 @@ include("format.jl") abstract type Setter end +function getpseudodir end + +function getpotentials end + end