From 13cda029e79ed263be070d681771f534003119b7 Mon Sep 17 00:00:00 2001 From: Nicholas O'Connor Date: Thu, 23 Mar 2017 15:03:02 -0700 Subject: [PATCH] beginnings of an activate command --- src/bottles/activate.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/bottles/activate.cpp diff --git a/src/bottles/activate.cpp b/src/bottles/activate.cpp new file mode 100644 index 0000000..07099ee --- /dev/null +++ b/src/bottles/activate.cpp @@ -0,0 +1,10 @@ +#include + +#include "bottles.hpp" +#include "internal/bottles.hpp" + +using namespace std; + +void cellar::bottles::switch_active_bottle(int argc, char** argv) { + cout << argc << endl; +}