.. _pyrogue_tree_node_command_local_command: ============ LocalCommand ============ The LocalCommand class ... In this example ... Python LocalCommand Example =========================== Below is an example of creating a LocalCommand which ... .. code-block:: python import pyrogue # Create a subclass of a LocalCommand class MyLocalCommand(...): C++ LocalCommand Example ======================== Below is an example of creating a LocalCommand device in C++. .. code-block:: c #include #include // Create a subclass of a LocalCommand class MyLocalCommand : public rogue:: ... { public: protected: }; A few notes on the above examples ...