Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OS.hpp removed as unused #660

Merged
merged 2 commits into from
Sep 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion bindings/py/cpp_src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ set(src_py_engine_files
bindings/engine/engine_module.cpp
bindings/engine/py_Engine.cpp
bindings/engine/py_Region.cpp
bindings/engine/py_OS.cpp
bindings/engine/py_Timer.cpp
bindings/engine/py_utils.hpp
)
Expand Down
2 changes: 0 additions & 2 deletions bindings/py/cpp_src/bindings/engine/engine_module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ namespace htm_ext
{
void init_Engine(py::module&);
void init_Timer(py::module&);
void init_OS(py::module&);
} // namespace htm_ext

using namespace htm_ext;
Expand All @@ -40,6 +39,5 @@ PYBIND11_MODULE(engine_internal, m) {
m.doc() = "htm.core.engine plugin"; // optional module docstring

init_Engine(m);
init_OS(m);
init_Timer(m);
}
2 changes: 0 additions & 2 deletions bindings/py/cpp_src/bindings/engine/py_Engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ PyBind11 bindings for Engine classes
#include <pybind11/numpy.h>
#include <pybind11/stl.h>


#include <htm/os/OS.hpp>
#include <htm/os/Timer.hpp>

#include <htm/ntypes/Array.hpp>
Expand Down
45 changes: 0 additions & 45 deletions bindings/py/cpp_src/bindings/engine/py_OS.cpp

This file was deleted.

4 changes: 0 additions & 4 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,6 @@ set(os_files
htm/os/Env.cpp
htm/os/Env.hpp
htm/os/ImportFilesystem.hpp
htm/os/OS.cpp
htm/os/OS.hpp
htm/os/OSUnix.cpp
htm/os/OSWin.cpp
htm/os/Path.cpp
htm/os/Path.hpp
htm/os/Timer.cpp
Expand Down
1 change: 0 additions & 1 deletion src/htm/engine/RegionImplFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include <htm/engine/YAMLUtils.hpp>
#include <htm/ntypes/Value.hpp>
#include <htm/os/Env.hpp>
#include <htm/os/OS.hpp>
#include <htm/os/Path.hpp>

// Built-in Region implementations
Expand Down
1 change: 0 additions & 1 deletion src/htm/os/Directory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

#include <htm/os/Directory.hpp> // defines namespace fs
#include <htm/os/Path.hpp>
#include <htm/os/OS.hpp>
#include <htm/utils/Log.hpp>
#include <string>

Expand Down
163 changes: 0 additions & 163 deletions src/htm/os/OS.cpp

This file was deleted.

Loading