You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
-
- // Include headers that plugins will likely use, for convenience
- #include "common.hpp"
- #include "math.hpp"
- #include "string.hpp"
- #include "logger.hpp"
- #include "system.hpp"
- #include "random.hpp"
- #include "network.hpp"
- #include "asset.hpp"
- #include "plugin.hpp"
- #include "engine.hpp"
- #include "window.hpp"
- #include "widgets.hpp"
- #include "app.hpp"
- #include "ui.hpp"
- #include "helpers.hpp"
-
-
- namespace rack {
-
-
- // Adopt some sub-namespaces into the main namespace for convenience
- using namespace math;
- using namespace string;
-
-
- } // namespace rack
|